[백준 알고리즘] 1966번 프린터 큐 (Python)언어, 알고리즘 공부/백준2020. 5. 1. 20:09
Table of Contents
<Python>
import collections
import sys
test = int(sys.stdin.readline())
for _ in range(test):
cnt = 0
n, m = map(int, sys.stdin.readline().split())
priority = collections.deque(map(int, sys.stdin.readline().split()))
if len(priority) == 1:
print(1)
else:
while True:
index = priority.index(max(priority))
for _ in range(index):
a = priority.popleft()
priority.append(a)
if m >= 1:
m -= 1
else:
m = len(priority) - 1
priority.popleft()
cnt += 1
if m == 0: break # m우선순위가 높은 것이 더이상 없으면서 m==0이 되었을때
m -= 1
print(cnt)
▼링크
https://www.acmicpc.net/problem/1966
반응형
'언어, 알고리즘 공부 > 백준' 카테고리의 다른 글
[백준 알고리즘] 9498번 시험 성적 (Java) (0) | 2020.05.08 |
---|---|
[백준 알고리즘] 10816번 숫자 카드 2 (Python) (0) | 2020.05.05 |
[백준 알고리즘] 11866번 요세푸스 문제 0 (Python) (0) | 2020.05.01 |
[백준 알고리즘] 2164번 카드2 (Python) (0) | 2020.05.01 |
[백준 알고리즘] 2748번 피보나치 수 2 (Python) (0) | 2020.04.30 |
@쿠몬e :: ˚˛˚ * December☃ 。* 。˛˚
전공 공부 기록 📘
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!