[ BOJ ] DFS/BFS - 인구이동
문제링크
문제설명
NN크기의 땅, 11마다 나라 존재 → r행 c열 나라의 인구는 A[r][c]명
더이상 인구이동이 없을때까지 인구이동
-
국경열기 : 두 나라간 인구차이가 L명이상 R명 이하
-
연합 만들기 : 국경 열린 국가끼리
→ 연합에 속한 각 국가들의 인구 = (연합 총 인구수)/(연합 이루는 국가 수)
-
국경 선 닫기
문제 풀이
from collections import deque
import sys
input = sys.stdin.readline
n,l,r = map(int, input().split())
worldmap = []
for _ in range(n):
worldmap.append(list(map(int, input().split())))
dx = [-1, 0, 1, 0]
dy = [0, -1, 0, 1]
result = 0
def process(x, y, index):
#(x,y)와 연결된 연합 정보 담기
united = []
united.append((x,y))
#BFS로 연결된 연합 확인
q = deque()
q.append((x,y))
union[x][y] = index
#연합의 인구수
population = worldmap[x][y]
#연합에 속한 나라 수
count = 1
while q:
x,y = q.popleft()
for i in range(4):
nx = x+dx[i]
ny = y+dy[i]
#연합에 속할 조건 만족하는지?
if 0<=nx<n and 0<=ny<n and union[nx][ny] == -1:
if l<= abs(worldmap[x][y] - worldmap[nx][ny]) <=r:
q.append((nx,ny))
union[nx][ny] = index
population += worldmap[nx][ny]
count += 1
united.append((nx,ny))
for i,j in united:
worldmap[i][j] = population//count
total_count = 0
while True:
union = [[-1]*n for _ in range(n)]
index = 0
for i in range(n):
for j in range(n):
if union[i][j] == -1:
process(i,j, index)
index += 1
#모든 인구이동 후
#print(union)
if index == n*n:
break
total_count += 1
print(total_count)
왜 계속 시간초과가 날까 했는데 pypy3으로 제출하니까 됐음 ㅋ...
Author And Source
이 문제에 관하여([ BOJ ] DFS/BFS - 인구이동), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@woo0_hooo/BOJ-DFSBFS-인구이동저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)