Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- c3 step graph
- g++ 업데이트
- c3 축 가리기
- InfluxDB
- snmp
- gcc regex
- centos pyhon 설치
- python os
- python subprocess
- grafana dashboard
- 정규식 활용
- semanage
- subporcess path
- linux시간으로 변경
- 정규식 컴파일
- influxdb 설치
- snmp test
- CentOS7
- python popen
- c3 축 없애기
- c++ 정규식
- regex_search
- telegraf
- gcc 업데이트
- 백준
- 1697
- c3 초
- selinux port 등록
- 정규식 문자열 출력
- c3 second
Archives
- Today
- Total
리셋 되지 말자
[백준 1966] 프린터 큐 - 큐 본문
코드
from collections import deque
def solution(b, arr):
# target인 작업 index b에 대한 타겟 여부를 1(타겟) 변경
arr[b][1] = 1
dq = deque(arr)
cnt = 1
while len(dq) != 0:
# 맨 앞에 있는 작업이 중요도가 제일 높으면
if dq[0][0] == max(dq)[0]:
# 중요도가 제일 높은데 타겟이면 cnt 출력 후 종료
if dq[0][1] == 1:
print(cnt)
break
# 중요도가 제일 높은데 타겟이 아니면 작업 pop, cnt 증가
dq.popleft()
cnt += 1
# 중요도가 제일 높은 작업이 아니면, 작업을 뒤로 넘김
else:
dq.append(dq[0])
dq.popleft()
n = int(input())
for _ in range(n):
a, b = map(int, input().split())
arr = []
for imp in list(map(int, input().split())):
# target이 아닌 작업은 [중요도, 0]
# target인 작업은 [중요도, 1]
arr.append([imp, 0])
solution(b, arr)
'알고리즘' 카테고리의 다른 글
[백준 18111] 마인크래프트 - 브루트포스 (0) | 2022.01.20 |
---|---|
[백준 1874] 스택 수열 - 스택 (0) | 2022.01.19 |
[백준 4949] 균형잡힌 세상 - 스택 (0) | 2022.01.18 |
[백준 1080] 체스판 다시 칠하기 - 브루트포스 (0) | 2022.01.18 |
[백준 10816] 숫자 카드 2 - 자료구조, 정렬(?), 이분탐색(?) (0) | 2022.01.14 |
Comments