-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Silver III] Title: 프린터 큐, Time: 64 ms, Memory: 34052 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# [Silver III] 프린터 큐 - 1966 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/1966) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 34052 KB, 시간: 64 ms | ||
|
||
### 분류 | ||
|
||
자료 구조, 구현, 큐, 시뮬레이션 | ||
|
||
### 제출 일자 | ||
|
||
2024년 3월 29일 19:53:36 | ||
|
||
### 문제 설명 | ||
|
||
<p>여러분도 알다시피 여러분의 프린터 기기는 여러분이 인쇄하고자 하는 문서를 인쇄 명령을 받은 ‘순서대로’, 즉 먼저 요청된 것을 먼저 인쇄한다. 여러 개의 문서가 쌓인다면 Queue 자료구조에 쌓여서 FIFO - First In First Out - 에 따라 인쇄가 되게 된다. 하지만 상근이는 새로운 프린터기 내부 소프트웨어를 개발하였는데, 이 프린터기는 다음과 같은 조건에 따라 인쇄를 하게 된다.</p> | ||
|
||
<ol> | ||
<li>현재 Queue의 가장 앞에 있는 문서의 ‘중요도’를 확인한다.</li> | ||
<li>나머지 문서들 중 현재 문서보다 중요도가 높은 문서가 하나라도 있다면, 이 문서를 인쇄하지 않고 Queue의 가장 뒤에 재배치 한다. 그렇지 않다면 바로 인쇄를 한다.</li> | ||
</ol> | ||
|
||
<p>예를 들어 Queue에 4개의 문서(A B C D)가 있고, 중요도가 2 1 4 3 라면 C를 인쇄하고, 다음으로 D를 인쇄하고 A, B를 인쇄하게 된다.</p> | ||
|
||
<p>여러분이 할 일은, 현재 Queue에 있는 문서의 수와 중요도가 주어졌을 때, 어떤 한 문서가 몇 번째로 인쇄되는지 알아내는 것이다. 예를 들어 위의 예에서 C문서는 1번째로, A문서는 3번째로 인쇄되게 된다.</p> | ||
|
||
### 입력 | ||
|
||
<p>첫 줄에 테스트케이스의 수가 주어진다. 각 테스트케이스는 두 줄로 이루어져 있다.</p> | ||
|
||
<p>테스트케이스의 첫 번째 줄에는 문서의 개수 N(1 ≤ N ≤ 100)과, 몇 번째로 인쇄되었는지 궁금한 문서가 현재 Queue에서 몇 번째에 놓여 있는지를 나타내는 정수 M(0 ≤ M < N)이 주어진다. 이때 맨 왼쪽은 0번째라고 하자. 두 번째 줄에는 N개 문서의 중요도가 차례대로 주어진다. 중요도는 1 이상 9 이하의 정수이고, 중요도가 같은 문서가 여러 개 있을 수도 있다.</p> | ||
|
||
### 출력 | ||
|
||
<p>각 테스트 케이스에 대해 문서가 몇 번째로 인쇄되는지 출력한다.</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import sys | ||
from collections import deque | ||
input = sys.stdin.readline | ||
|
||
test_cases = int(input().strip()) | ||
|
||
for _ in range(test_cases): | ||
n, m = map(int, input().split()) | ||
priorities = deque([(int(p),i ) for i, p in enumerate(input().split())]) | ||
#print(priorities) | ||
sorted_prior = sorted([p for (p, i) in priorities]) | ||
#print(sorted_prior) | ||
|
||
count = 1 | ||
while sorted_prior: | ||
cur_prior = sorted_prior.pop() | ||
while priorities: | ||
prior, idx = priorities.popleft() | ||
#print(cur_prior) | ||
#print(prior, idx, m) | ||
if cur_prior==prior: | ||
if idx == m: | ||
print(count) | ||
else: | ||
count += 1 | ||
break | ||
else: | ||
priorities.append((prior, idx)) |