Created
October 1, 2019 06:10
-
-
Save aliwo/1d8f6b69847c91555c6da059c1ae66a8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 종만북에서 풀었던 문제. 삼각형 모양만 다르다. | |
# cache[i][j] 보다 f 스트링을 사용한 1중 dict 가 훨씬 빠르다. | |
# 이게 반복으로 풀 수 있는 문제인가? | |
cache = {} | |
def move(triangle, i, j): | |
''' | |
현재 위치에서 내려갔을 떄 얻을 수 있는 최댓값을 반환합니다. | |
''' | |
key = f'{i} {j}' | |
if key in cache: | |
return cache[key] | |
if i > len(triangle) - 1: | |
return 0 | |
if j > len(triangle[i]) - 1: | |
return 0 | |
cache[key] = triangle[i][j] + max(move(triangle, i + 1, j), move(triangle, i + 1, j + 1)) | |
return cache[key] | |
def solution(triangle): | |
return move(triangle, 0, 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment