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
- 정렬
- JavaScript
- 슬라이딩 윈도우
- 수학
- 문자열
- 맵
- 13164
- 싸피
- 브루트포스
- 2357
- 이분 탐색
- 모던 JavaScript 튜토리얼
- 세그먼트 트리
- Python
- BFS
- 트리
- 애드 혹
- DP
- 플로이드-워셜
- 에라토스테네스의 체
- boj
- 구현
- 해시 테이블
- 그리디
- DFS
- 정수론
- 투 포인터
- 그래프
- SSAFY
- 누적 합
Archives
- Today
- Total
흙금이네 블로그
[BOJ] 17779 - 게리맨더링 2 (Python) 본문
아이디어
완전 탐색으로 접근하되, 누적합을 이용하여 각 선거구의 인구 합을 빠르게 계산한다.
풀이
import sys
input = sys.stdin.readline
def solution():
N = int(input())
A = [list(map(int, input().split())) for _ in range(N)]
total = 0
for i in range(N):
for j in range(1, N):
A[i][j] += A[i][j-1]
A[i] = [0]+A[i]
total += A[i][-1]
res = total
for r in range(N-2):
for c in range(1, N-1):
for d1 in range(1, min(N-r-1, c+1)):
for d2 in range(1, min(N-(r+d1), N-c)):
P = [0]*5
for i in range(r):
P[0] += A[i][c+1]
for i in range(d1):
P[0] += A[r+i][c-i]
for i in range(r+1):
P[1] += A[i][N]-A[i][c+1]
for i in range(d2):
P[1] += A[r+i+1][N]-A[r+i+1][c+2+i]
for i in range(d2):
P[2] += A[r+d1+i][c-d1+i]
for i in range(r+d1+d2, N):
P[2] += A[i][c-d1+d2]
for i in range(d1):
P[3] += A[r+d2+i+1][N]-A[r+d2+i+1][c+d2-i]
for i in range(r+d1+d2+1, N):
P[3] += A[i][N]-A[i][c-d1+d2]
P[4] = total-sum(P)
temp = max(P)-min(P)
if temp < res:
res = temp
print(res)
solution()
'알고리즘' 카테고리의 다른 글
[BOJ] 16208 - 귀찮음 (Python) (0) | 2023.03.23 |
---|---|
[BOJ] 25496 - 장신구 명장 임스 (Python) (0) | 2023.03.22 |
[BOJ] 16236 - 아기 상어 (Python) (0) | 2023.03.21 |
[BOJ] 14890 - 경사로 (Python) (0) | 2023.03.20 |
[BOJ] 3190 - 뱀 (Python) (0) | 2023.03.20 |
Comments