[백준-11048] 이동하기
코드
import sys
from collections import deque
input = sys.stdin.readline
n,m=map(int,input().split())
maze=[list(map(int,input().split())) for _ in range(n)]
dp=[[0]*(m+1) for _ in range(n+1)]
for i in range(1,n+1):
for j in range(1,m+1):
dp[i][j]=max(dp[i-1][j],dp[i][j-1],dp[i-1][j-1])+maze[i-1][j-1]
print(dp[n][m])
풀이
dp[i][j]에는 (i,j)미로방에 가지고들어갈 사탕의 최대 가수이다.
이는 dp[i-1][j]+maze[i-1][j-1] 혹은 dp[i][j-1]+maze[i-1][j-1] 혹은 dp[i-1][j-1]+maze[i-1][j-1] 중 가장 큰 값이다.
maze[i-1][j-1]인 이유는 dp의 크기가 n+1,m+1 이기 때문이다.
Author And Source
이 문제에 관하여([백준-11048] 이동하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@sue06004/백준-11048-이동하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)