일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 싸움땅
- ISER
- 왕실의기사대결
- 이진탐색
- Calibration
- 삼성기출
- DenseDepth
- 시뮬레이션
- 소프티어
- 나무박멸
- DP
- 3Dreconstruction
- 포탑부수기
- BFS
- 백준
- 토끼와 경주
- 코드트리
- 순서대로방문하기
- 코드트리빵
- 슈퍼컴퓨터클러스터
- 조합
- 마이크로프로세서
- ros
- 구현
- ICER
- ARM
- 수영대회결승전
- 마법의숲탐색
- 루돌프의반란
- dfs
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 |