일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 정규식
- 위클리 챌린지
- Set
- 파이썬
- 정렬
- DateTime
- backjoon
- 추석맞이 코딩챌린지
- programmers
- Combinations
- 프로그래머스
- Zip
- divmod
- heapq
- 동적 계획법
- lambda
- KAKAO BLIND RECRUITMENT
- 재귀함수
- python
- 이분탐색
- 백준
- 자바
- 그리디
- java
- 다익스트라
- dfs
- Re
- 수학
- BFS
- 카카오
Archives
- Today
- Total
상상쓰
[백준] 카드 섞기 본문
https://www.acmicpc.net/problem/1091
문제만 이해하면 어렵지 않게 풀 수 있다.
좋은 풀이는 아닌지만 하라는 대로 하면 풀린다.
import sys
N = int(sys.stdin.readline())
P = list(map(int, sys.stdin.readline().split()))
S = list(map(int, sys.stdin.readline().split()))
result = []
mix = [i for i in range(N)]
answer = 0
for i in range(N):
result.append(P[i])
while True:
t = False
for i in range(N):
if mix[i] % 3 != result[i]:
answer += 1
temp = []
for j in range(N):
if S[mix[j]] != j:
t = True
temp.append(S[mix[j]])
mix = temp
break
else:
break
if not t:
answer = -1
break
print(answer)
'Coding Test' 카테고리의 다른 글
[백준] 동전 0 (0) | 2022.03.29 |
---|---|
[프로그래머스] 파괴되지 않은 건물 (0) | 2022.03.24 |
[백준] 숫자고르기 (0) | 2022.02.27 |
[프로그래머스] 양궁대회 (0) | 2022.02.20 |
[프로그래머스] 주차 요금 계산 (0) | 2022.02.12 |
Comments