반응형
https://school.programmers.co.kr/learn/courses/30/lessons/12913
풀이
def solution(land):
for i in range(1,len(land)):
now = land[i]
before = land[i-1]
now[0] += max(before[1],before[2],before[3])
now[1] += max(before[2],before[3],before[0])
now[2] += max(before[1],before[3],before[0])
now[3] += max(before[1],before[2],before[0])
return max(land[-1])
1. 다음 칸에 가질 수 있는 최대값을 갱신
반응형
'알고리즘' 카테고리의 다른 글
[BOJ/완전탐색] 14888 연산자 끼워넣기 (0) | 2023.09.19 |
---|---|
[BOJ/완전탐색] 15686 치킨배달 (0) | 2023.09.19 |
[BOJ/동적 프로그래밍] 14501 퇴사 (0) | 2023.09.19 |
[구름톤 챌린지 종료] Day 20 - 연결 요소 제거하기(그래프 탐색) (0) | 2023.09.12 |
[구름톤 챌린지] Day 19 - 대체 경로(그래프 최단 경로) (0) | 2023.09.12 |