티스토리 뷰

https://www.acmicpc.net/problem/16234

 

16234번: 인구 이동

N×N크기의 땅이 있고, 땅은 1×1개의 칸으로 나누어져 있다. 각각의 땅에는 나라가 하나씩 존재하며, r행 c열에 있는 나라에는 A[r][c]명이 살고 있다. 인접한 나라 사이에는 국경선이 존재한다. 모��

www.acmicpc.net

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# BFS로 풀이 가능. 2회차에는 BFS로 풀이!
# 현재 코드로는 PyPy3로만 통과하고, Python3로는 통과가 안됨.
# 추후 BFS로 작성하여 시간초과 나는지 확인 요망
 
import sys
sys.setrecursionlimit(10000)
 
dd = ((01), (10), (0-1), (-10))
n, l, r = map(int, input().split())
parent = [[[i, j] for j in range(n + 1)] for i in range(n + 1)]
graph = [[0for _ in range(n + 1)]
for i in range(1, n + 1):
    graph[i] += map(int, input().split())
 
 
def find_parent(y, x):
    if parent[y][x] != [y, x]:
        parent[y][x] = find_parent(parent[y][x][0], parent[y][x][1])
    return parent[y][x]
 
 
def union(ay, ax, by, bx):
    ap, bp = find_parent(ay, ax), find_parent(by, bx)
    if ap[0== bp[0]:
        if ap[1< bp[1]:
            parent[bp[0]][bp[1]] = [ap[0], ap[1]]
        else:
            parent[ap[0]][ap[1]] = [bp[0], bp[1]]
    else:
        if ap[0< bp[0]:
            parent[bp[0]][bp[1]] = [ap[0], ap[1]]
        else:
            parent[ap[0]][ap[1]] = [bp[0], bp[1]]
 
 
def dfs(y, x, arr, index):
    arr[index].append((y, x))
    for i in range(4):
        posy, posx = y + dd[i][0], x + dd[i][1]
        if 1 <= posy <= n and 1 <= posx <= n:
            ap, bp = find_parent(y, x), find_parent(posy, posx)
            if l <= abs(graph[y][x] - graph[posy][posx]) <= r and ap != bp:
                union(y, x, posy, posx)
                dfs(posy, posx, arr, index)
 
 
count = 0
 
while True:
    flag = False
 
    arr = list()
    for i in range(1, n + 1):
        for j in range(1, n + 1):
            if [i, j] == find_parent(i, j):
                arr.append(list())
                dfs(i, j, arr, len(arr) - 1)
 
    for u in arr:
        if len(u) > 1:
            summation = 0
            for a, b in u:
                summation += graph[a][b]
            val = summation // len(u)
            for a, b in u:
                graph[a][b] = val
            flag = True
 
    parent = [[[i, j] for j in range(n + 1)] for i in range(n + 1)]
 
    if not flag:
        break
    count += 1
 
print(count)
cs

계속 77~79%에서 시간초과가 나서 고치고 고치고 고쳤다.

기본적으로 BFS나 DFS로 풀 수 있는데, 나는 DFS로 풀었다.

근데, 위 코드는 백준에서 Python3로 돌리면 79%에서 시간초과가 난다.. ;;;

PyPy3로 돌리면 통과한다.

추후 BFS로 풀어보고, 시간초과 뜨는지 확인해봐야겠다.

댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/05   »
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
글 보관함