일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 왕실의기사대결
- 루돌프의반란
- 구현
- 코드트리빵
- Calibration
- ISER
- ICER
- 수영대회결승전
- 조합
- 마법의숲탐색
- dfs
- BFS
- 3Dreconstruction
- 백준
- 코드트리
- 순서대로방문하기
- 포탑부수기
- 토끼와 경주
- ARM
- DenseDepth
- 싸움땅
- 시뮬레이션
- ros
- 이진탐색
- 슈퍼컴퓨터클러스터
- 삼성기출
- DP
- 마이크로프로세서
- 나무박멸
- 소프티어
Archives
- Today
- Total
from palette import colorful_colors
[백준] 1932 정수 삼각형 with 파이썬 본문
import sys
input = sys.stdin.readline
# 입력받기
N = int(input())
for i in range(N):
d.append(list(map(int, input().split())))
# 초기값
if N > 2:
d[1][0] = d[0][0] + d[1][0]
d[1][1] = d[0][0] + d[1][1]
# 메모이제이션 하면서 계산
for i in range(2, N):
for j in range(0, i+1):
if j == 0:
d[i][j] = d[i - 1][0] + d[i][j]
elif j == i:
d[i][j] = d[i - 1][j - 1] + d[i][j]
else:
d[i][j] = max(d[i-1][j-1] , d[i-1][j]) + d[i][j]
# 결과 출력
print(max(d[N-1]))
'알고리즘 > 알고리즘 with 파이썬' 카테고리의 다른 글
[알고리즘 with C++] 입출력 (0) | 2024.01.10 |
---|---|
[백준] 15685 드래곤 커브 with 파이썬 (1) | 2023.11.06 |
[코드트리] 메이즈러너 with 파이썬 (0) | 2023.10.14 |
[백준] 23288 주사위 굴리기 2 with 파이썬 (0) | 2023.10.12 |
[백준] 16236 아기 상어 with 파이썬 (0) | 2023.10.12 |