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
- 탑다운
- ㅂ
- 오픽노잼
- fibo
- 메모이제이션
- 다이나믹프로그래밍
- 오픽공부법
- 영어회화
- dynamicProgramming
- 오픽점수잘받는방법
- 영어말하기
- 이진탐색 #나무 자르기
- 오픽노잼공부방법
- stack 스택
- English
- 오픽가격
- 디피
- 안드로이드
- 이진탐색
- XML주석
- XML
- 오픽
- opic
- 주석
- 피보나치수열
- topdown
- 안드로이드주석
- 바텀업
- dp
Archives
RUBY
[백준] 요세푸스 문제 본문
출처:: https://www.acmicpc.net/problem/1158
분류:: 큐, 원형큐
1. 문제 이해 및 해결과정
- 원형 큐로 해결 |
2. 풀이방법
1.원형 큐
#요세푸스 문제
#https://www.acmicpc.net/problem/1158
import sys
from collections import deque
sys.stdin = open("input.txt","r")
n,k=map(int,input().split())
q=deque(i for i in range(1,n+1))
cnt=0
result=[]
while q:
q.rotate(-(k-1))
result.append(q.popleft())
print("<",end='')
for i in range(len(result)):
if i!=len(result)-1:
print("%d," %result[i],end=' ')
else:
print("%d>" %result[i])
3. 오답원인
4. 알게된 점
deque.rotate()
# 1만큼 오른쪽으로 밀 때
q = deque(['a', 'b', 'c', 'd', 'e'])
deq.rotate(1)
##['e', 'a', 'b', 'c', 'd']
# 1만큼 왼쪽으로 밀 때
q = deque(['a', 'b', 'c', 'd', 'e'])
deq.rotate(-1)
##['b', 'c', 'd', 'e', 'a']
'PS > BOJ' 카테고리의 다른 글
[백준] 스택 수열 (0) | 2020.09.28 |
---|---|
[백준] 단어뒤집기 (0) | 2020.09.28 |
[백준] 카드 구매하기 (0) | 2020.09.28 |
[백준] 에디터 (0) | 2020.09.28 |
[백준] 격자상의 경로 (0) | 2020.09.27 |
Comments