본문 바로가기
알고리즘/소스코드

KOREATECH 1043: 위성 사진

by cjw.git 2021. 1. 21.

Link : judge.koreatech.ac.kr/problem.php?id=1043


Python

더보기
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
from sys import stdin
 
map_x, map_y = list(map(int, stdin.readline().strip().split()))
 
map_data = [[s for s in stdin.readline().strip()] for i in range(map_y)]
 
 
def able_move(x, y):
    if x < 0 or y < 0:
        return False
    if x >= map_x or y >= map_y:
        return False
    if map_data[y][x] == '*':
        return True
    else:
        return False
 
 
def BFS(p_x, p_y):
    que = set()
    que.add((p_x, p_y))
    counter = 0
    while len(que):
        t_x, t_y = que.pop()
        map_data[t_y][t_x] = '.'
        counter += 1
        if able_move(t_x + 1, t_y):
            que.add((t_x + 1, t_y))  # right
        if able_move(t_x - 1, t_y):
            que.add((t_x - 1, t_y))  # left
        if able_move(t_x, t_y + 1):
            que.add((t_x, t_y + 1))  # down
        if able_move(t_x, t_y - 1):
            que.add((t_x, t_y - 1))  # up
    return counter
 
 
data = []
for i in range(map_y):
    for j in range(map_x):
        if able_move(j, i):
            data.append(BFS(j, i))
 
if len(data) > 0:
    print(max(data))
else:
    print(0)
 
cs

FeedBack

  1. BFS정석은 FIFO의 자료구조인 pop, popleft, append가 O(1)에 해결되는 deque 등 queue를 이용하는게 좋습니다.
    하지만 저는 편의를 위해 중복이 허용되지 않는 set을 이용하였습니다.

 

 

 

cjw.git@gmail.com

댓글