11866. 요세푸스 문제 0
by 브이담곰https://www.acmicpc.net/problem/11866
✔ 유형 : 큐
✔ 문제 풀이: 큐의 성질 이용. push, pop
import sys
import collections
input=sys.stdin.readline # input함수 바꾸기
size, gap = map(int, input().split())
q = collections.deque()
for i in range(1,size+1):
q.append(i)
result = list()
i = 0
while(len(result) < size):
#만약 index가 length의 끝까지 도달하면.
if( i == gap ):
i = 0
if(i%gap == gap-1):
#gap의 배수 index일때는 pop하고 result에 넣는다.
tmp = q.popleft()
result.append(tmp)
else:
#나머지는 pop하고 다시 q에 넣는다.
tmp = q.popleft()
q.append(tmp)
i+=1
#print
for idx in range(size):
if size == 1:
print(f'<1>')
break
if idx==0:
print('<', end='')
print(result[idx], end=', ')
elif idx== (size-1):
print(result[idx], end='>')
else:
print(result[idx], end=', ')
'Coding Test > Baekjoon' 카테고리의 다른 글
3109. 뱀 (0) | 2024.07.10 |
---|---|
2493. 탑 (0) | 2024.07.10 |
2468. 안전 영역 (0) | 2024.07.10 |
10971. 외판원 순회 2 (0) | 2024.07.10 |
2309. 일곱 난쟁이 (0) | 2024.07.10 |
블로그의 정보
농담곰담곰이의곰담농
브이담곰