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
- docker
- 프로그래머스
- GIT
- rnn
- torchserve
- NLP
- DeepLearning
- Kaggle
- FDS
- wandb
- NaverAItech
- leetcode
- 알고리즘
- Matplotlib
- PytorchLightning
- 네이버AItech
- datascience
- autoencoder
- pytorch
- GitHub Action
- vscode
- Kubernetes
- python
- FastAPI
- 백준
- pep8
- 코딩테스트
- github
- 완전탐색
- GCP
Archives
- Today
- Total
Sangmun
백준 11052번 카드 구매하기 파이썬 본문
https://infinitt.tistory.com/250
N = int(input())
p = [0] + list(map(int,input().split()))
dp = [0 for _ in range(N+1)]
for i in range(1,N+1):
for k in range(1,i+1):
print(i,k)
dp[i] = max(dp[i], dp[i-k] + p[k])
print(dp[N])
'알고리즘 > 백준' 카테고리의 다른 글
백준 1049번 기타줄 (0) | 2023.02.03 |
---|---|
백준 11057 오르막 수 (0) | 2022.12.22 |
백준 9935번 문자열 폭발 (0) | 2022.12.14 |
백준 17144번 미세먼지 안녕! (0) | 2022.12.14 |
백준 12851번 숨바꼭질2 (0) | 2022.12.14 |
Comments