Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 디피
- English
- 오픽공부법
- 오픽
- opic
- topdown
- stack 스택
- 오픽가격
- 영어말하기
- 이진탐색 #나무 자르기
- dynamicProgramming
- 다이나믹프로그래밍
- 피보나치수열
- 바텀업
- 오픽노잼
- 주석
- 안드로이드
- 오픽노잼공부방법
- fibo
- 오픽점수잘받는방법
- dp
- 안드로이드주석
- 영어회화
- XML
- 이진탐색
- XML주석
- 탑다운
- ㅂ
- 메모이제이션
Archives
RUBY
[프로그래머스] 땅따먹기 본문
출처:: programmers.co.kr/learn/courses/30/lessons/12913
분류:: dp
1. 문제 이해 및 해결과정
2. 풀이방법
1. [python] dp
def solution(land):
for i in range(len(land) - 1):
land[i + 1][0] = max(land[i][1], land[i][2], land[i][3]) + land[i+1][0] #i+1행 0열의 최대값(자신의 열 제외)
land[i + 1][1] = max(land[i][0], land[i][2], land[i][3]) + land[i+1][1]
land[i + 1][2] = max(land[i][0], land[i][1], land[i][3]) + land[i+1][2]
land[i + 1][3] = max(land[i][0], land[i][1], land[i][2]) + land[i+1][3]
return max(land[-1])
2. [python] 리스트
def solution(land):
for i in range(1, len(land)): #행
for j in range(len(land[0])):#j를 제외함 , 열
land[i][j] = max(land[i -1][: j] + land[i - 1][j + 1:]) + land[i][j]
return max(land[-1])
3. 오답원인
4. 알게된 점
'PS > Programmers' 카테고리의 다른 글
[프로그래머스] 피보나치 수 (0) | 2020.10.27 |
---|---|
[프로그래머스] 최댓값과 최솟값 (0) | 2020.10.27 |
[프로그래머스] 최솟값 만들기 (0) | 2020.10.27 |
[프로그래머스] 다음 큰 숫자 (0) | 2020.10.26 |
[프로그래머스] 올바른 괄호 (0) | 2020.10.26 |
Comments