일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Python
- MongoDB
- 라즈베리파이3
- ubuntu
- 파이썬
- NAV
- 크롤링
- 알고리즘
- CSS
- Algorythm
- 라즈베리파이3b+
- 2909
- dp
- 라즈비안
- 16.04
- 백준
- 13237
- springboot3.x
- HTML
- 2579
- 라즈베리파이
- algotythm
- Crawling
- baekjun
- bootstrap
- nav-tab
- node.js
- raspberrypi
- dynaminprogramming
- 트리
Archives
- Today
- Total
노트
[백준] 14501번 퇴사 python 본문
n = int(input())
s = [list(map(int,input().split())) for _ in range(n)]
dp = [0 for i in range(n+1)]
for i in range(n):
for j in range(i+s[i][0],n+1):
if dp[j]<dp[i]+s[i][1]:
dp[j]=dp[i]+s[i][1]
print(dp[-1])
'알고리즘' 카테고리의 다른 글
[백준] 23028번 5학년은 다니기 싫어요 python (0) | 2024.03.10 |
---|---|
[백준] 13237번 Binary tree python (0) | 2024.03.01 |
[백준] 1389번 케빈 베이컨의 6단계 법칙 python (0) | 2024.02.19 |
[백준] 1010번 다리 놓기 python (1) | 2024.02.12 |
[백준] 11724번 연결 요소의 개수 python (0) | 2024.02.04 |
Comments