일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 매일11시
- 괄호
- Kotlin
- expo
- 9095
- 6603
- 코틀린
- Combination
- permutation
- 홈화면
- 11기
- Android
- 백준
- 나머지
- 코테
- 11057
- 순열
- 11053
- 11054
- 최소공배수
- lcm
- LCS
- itertools
- 뒤로가기
- 1260
- 앱
- 1182
- Python
- 파이썬
- 안드로이드
Archives
- Today
- Total
황소개발자
백준 2178 파이썬 python : 미로 탐색 @@황소처럼 우직하게@@ 본문
반응형
import sys
input = sys.stdin.readline
h, w = map(int, input().split())
mat = [[] for i in range(h)]
dx = [1, -1 , 0, 0]
dy = [0, 0, 1, -1]
for i in range(h):
ss = input().strip()
for s in ss:
mat[i].append(int(s))
def bfs(y, x):
q = [[y, x]]
while q:
now = q.pop(0)
for i in range(4):
ny = now[0] + dy[i]
nx = now[1] + dx[i]
if 0 <= nx < w and 0 <= ny < h and mat[ny][nx] == 1:
mat[ny][nx] = mat[now[0]][now[1]] + 1
q.append([ny, nx])
bfs(0, 0)
print(mat[-1][-1])
잘익혀두셔요
반응형
'백준 문제 풀이' 카테고리의 다른 글
백준 1697 파이썬 python : 숨바꼭질 @@황소처럼 우직하게@@ (0) | 2020.03.03 |
---|---|
백준 7576 파이썬 python : 토마토 @@황소처럼 우직하게@@ 시간초과 해결 (0) | 2020.03.03 |
백준 4963 파이썬 python : 섬의 개수 @@황소처럼 우직하게@@ 짜릿짜릿 (0) | 2020.03.03 |
백준 2667 파이썬 python : 단지번호붙이기 @@황소처럼 우직하게@@ (0) | 2020.03.02 |
백준 1707 파이썬 python : 이분 그래프 @@황소처럼 우직하게@@ 이렇게 푸는겁니당 (0) | 2020.03.02 |
Comments