반응형
from collections import deque
n, m = map(int,input().split())
temp = []
for _ in range(n):
aaa = input()
aa = []
for a in aaa:
aa.append( int(a))
temp.append(aa)
# print(temp)
dx = [0, 0, -1, 1]
dy = [-1, 1, 0, 0]
visited=[(0,0)]
round = 0
stack = deque ()
stack.append((0,0, 0) )
pointX = 0
pointY = 0
while pointX != n-1 or pointY != m-1:
pointX, pointY, round =stack.popleft()
for i in range(4):
temp_pointX =pointX+ dx[i]
if temp_pointX <0 or temp_pointX> n-1:
continue
temp_pointY =pointY+ dy[i]
if temp_pointY <0 or temp_pointY >m-1:
continue
if temp[temp_pointX][temp_pointY] ==0:
continue
else:
temp[temp_pointX][temp_pointY] = 0
stack.append((temp_pointX, temp_pointY, round+1) )
print(round+1)
반응형
'computer 지식 > 알고리즘 정복기' 카테고리의 다른 글
20053 최소,최대2 파이썬 백준 (0) | 2021.10.13 |
---|---|
5597 과제 안 내신 분..? 백준 파이썬 (0) | 2021.10.13 |
20546 기적의 매매법 파이썬 백준 (0) | 2021.10.13 |
14467 소가 길을 건너간 이유 1 파이썬 백준 (0) | 2021.10.13 |
2578 빙고 백준 파이썬 (0) | 2021.10.13 |