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
- 백준 16236
- 백준 파이썬
- spring security
- MSA
- spring cloud
- with recursive
- java
- 웹어플리케이션 서버
- Spring Boot
- JVM
- 백준 19238
- Coroutine
- re.split
- springboot
- spring oauth
- 프로그래머스
- sql 기술면접
- 백준 15685
- Spring
- 프로래머스
- 파이썬
- 백준
- 백준 17779
- JPA
- MySQL
- java 기술면접
- 백준 17626
- 백준 16235
- Kotlin
- 백준 16719
Archives
- Today
- Total
목록백준 1021 (1)
시작이 반
[백준] 1021번 (python 파이썬)
ex) 10 3 2 9 5 2 queue = 1 2 3 4 5 6 7 8 9 10 왼쪽으로 회전 1번 queue = 2 3 4 5 6 7 8 9 10 1 pop 9 queue = 3 4 5 6 7 8 9 10 1 오른쪽으로 회전 3번 queue = 9 10 1 3 4 5 6 7 8 pop 5 queue = 10 1 3 4 5 6 7 8 오른쪽으로 회전 4번 queue = 5 6 7 8 10 1 3 4 pop 총 횟수 8번 핵심은 오른쪽으로 회전할지 왼쪽으로 회전할지 정하는 것이다. 타겟에 대해 index를 계산하여 판단한다. from collections import deque import sys input = sys.stdin.readline n, m = map(int, input().split()) ..
알고리즘/백준
2021. 3. 4. 23:38