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
- DP
- 2357
- 수학
- 애드 혹
- 정수론
- 누적 합
- 정렬
- 그리디
- JavaScript
- Python
- 싸피
- 맵
- 슬라이딩 윈도우
- 트리
- 모던 JavaScript 튜토리얼
- 투 포인터
- SSAFY
- 구현
- BFS
- 그래프
- 문자열
- 13164
- boj
- 이분 탐색
- 플로이드-워셜
- 세그먼트 트리
- DFS
- 에라토스테네스의 체
- 해시 테이블
- 브루트포스
Archives
- Today
- Total
흙금이네 블로그
[BOJ] 17140 - 이차원 배열과 연산 (Python) 본문
아이디어
조건에 따라 R 연산과 C 연산을 구현한다.
풀이
import sys
input = sys.stdin.readline
def R():
global A, M
new_A = [[0]*101 for _ in range(101)]
for i in range(1, N+1):
temp = dict()
for j in range(1, M+1):
if A[i][j]:
temp[A[i][j]] = temp.get(A[i][j], 0)+1
j = 1
for n1, n2 in sorted(temp.items(), key=lambda x: (x[1], x[0]))[:50]:
new_A[i][j] = n1
new_A[i][j+1] = n2
j += 2
if j-1 > M:
M = j-1
A = new_A
def C():
global A, N
new_A = [[0]*101 for _ in range(101)]
for j in range(1, M+1):
temp = dict()
for i in range(1, N+1):
if A[i][j]:
temp[A[i][j]] = temp.get(A[i][j], 0)+1
i = 1
for n1, n2 in sorted(temp.items(), key=lambda x: (x[1], x[0]))[:50]:
new_A[i][j] = n1
new_A[i+1][j] = n2
i += 2
if i-1 > N:
N = i-1
A = new_A
r, c, k = map(int, input().split())
N = M = 3
A = [[0]*101 for _ in range(101)]
for i in range(1, 4):
A[i][1:4] = list(map(int, input().split()))
res = -1
if A[r][c] == k:
res = 0
else:
for i in range(1, 101):
if N >= M:
R()
else:
C()
if A[r][c] == k:
res = i
break
print(res)
'알고리즘' 카테고리의 다른 글
[BOJ] 14890 - 경사로 (Python) (0) | 2023.03.20 |
---|---|
[BOJ] 3190 - 뱀 (Python) (0) | 2023.03.20 |
[BOJ] 19637 - IF문 좀 대신 써줘 (Python) (0) | 2023.03.17 |
[BOJ] 21608 - 상어 초등학교 (Python) (0) | 2023.03.16 |
[BOJ] 1590 - 캠프가는 영식 (Python) (1) | 2023.03.16 |
Comments