티스토리 뷰
반응형
문제의 저작권은 SW Expert Academy에 있습니다.
import collections
TC = int(input())
for tc in range(1, TC+1):
N, M = map(int, input().split())
data = list(map(int, input().split()))
deq = collections.deque()
for i in data:
deq.append(i)
while M > 0:
a = deq.popleft()
deq.append(a)
M -= 1
print("#%d %d"%(tc, deq[0]))
Queue의 매우 기본 문제다
이때 포인트는 파이썬에서는 deque를 활용해야 좀더 빠르게 풀 수 있다.
queue라이브러리 같은 경우는 쓰래드 같은 복잡한 경우도 포함 되어있어서 deque 보다 더 오래 걸린다.
deque쓰는 법은 import collections
로 불러와서 deq=collections.deque()
를 적고 deq를 쓰면 된다.
여기서는 deq.append()
와 deq.popleft()
를 썼다.
추가적인 개념은 알고리즘의 queue 풀이 방법을 참고 하자.
index를 이용한 초간단 풀이
TC = int(input())
for tc in range(1, TC+1):
N, M = map(int, input().split())
data = list(map(int, input().split()))
res = M%N
sol = res
print("#%d %d"%(tc, data[sol]))
사실 이게 더 쉬운 풀이다.
반응형
'알고리즘 > sw' 카테고리의 다른 글
[SW Expert Academy] 5105번 미로의 거리 python (0) | 2020.04.16 |
---|---|
[SW Expert Academy] 5099번 피자굽기 python (0) | 2020.04.08 |
4881. [파이썬 S/W 문제해결 기본] 5일차 - 배열 최소 합_python (0) | 2020.03.29 |
4880. [파이썬 S/W 문제해결 기본] 5일차 - 토너먼트 카드게임_python (0) | 2020.03.29 |
4875. [파이썬 S/W 문제해결 기본] 5일차 - 미로_python (0) | 2020.03.28 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- NextJS
- 자료구조
- next.config.js
- nextjs autoFocus
- Queue
- error:0308010C:digital envelope routines::unsupported
- 자연어처리
- typescript
- Python
- JavaScript
- useState
- Deque
- react autoFocus
- 클라우데라
- useHistory 안됨
- logout
- Express
- DFS
- django
- react
- mongoDB
- UserCreationForm
- vuejs
- BFS
- login
- Vue
- pandas
- nodejs
- TensorFlow
- read_csv
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함