일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준
- expo
- LCS
- 1260
- 괄호
- 앱
- Kotlin
- 뒤로가기
- 11기
- 홈화면
- permutation
- 최소공배수
- 11053
- 순열
- 코틀린
- 나머지
- Android
- 11057
- 11054
- lcm
- itertools
- 코테
- 안드로이드
- 6603
- 9095
- 1182
- 파이썬
- Combination
- Python
- 매일11시
Archives
- Today
- Total
황소개발자
백준 11048 파이썬 python : 이동하기 @@황소처럼 우직하게@@ 본문
반응형
bfs로 풀어보았다.
다이나믹이 아닌
import sys
input = sys.stdin.readline
from collections import deque
n, m = map(int, input().split())
mat = []
for i in range(n):
mat.append(list(map(int, input().split())))
score = [[-1 for i in range(m)] for j in range(n)]
score[0][0] = mat[0][0]
dx = [1, 0]
dy = [0, 1]
def bfs(y, x):
q = deque()
q.append([y, x])
while q:
y, x = q.popleft()
for i in range(2):
ny = y + dy[i]
nx = x + dx[i]
if 0 <= nx < m and 0 <= ny < n:
if score[ny][nx] < score[y][x] + mat[ny][nx]:
score[ny][nx] = score[y][x] + mat[ny][nx]
q.append([ny, nx])
bfs(0, 0)
print(score[-1][-1])
반응형
'백준 문제 풀이' 카테고리의 다른 글
SW 마에스트로 11기 온라인 코딩 테스트 후기: [소마 코테] @@황소처럼 우직하게@@ 풀기는 4문제인데.. 답을 모르니 [소마 11기] (0) | 2020.03.19 |
---|---|
백준 1890 파이썬 python : 점프 @@황소처럼 우직하게@@ (0) | 2020.03.12 |
백준 1339 파이썬 python : 단어 수학 @@황소처럼 우직하게@@ (0) | 2020.03.07 |
백준 2529 파이썬 python : 부등호 @@황소처럼 우직하게@@ 아직 멍청이다 (0) | 2020.03.07 |
백준 1748 파이썬 python : 수 이어 쓰기 1 @@황소처럼 우직하게@@ 식만 세우면 끝이다 (0) | 2020.03.07 |
Comments