일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자살
- C++
- 파이썬 강좌
- BOJ
- mmdetection
- 2021
- 백준
- mmcv
- 자작시
- 라즈베리파이 모니터
- 슬픔
- 공부
- python 강의
- dp
- 2024
- python 강좌
- 철학
- it
- 파이썬
- 계획
- python
- 2020
- 강의
- 인생
- 강좌
- 파이썬 강의
- 다이나믹프로그래밍
- dynamic programming
- 알고리즘
- 프로그래밍
Archives
- Today
- Total
목록
평범한 배낭
(1)
반응형
반응형
Stargazer
[백준] 12865번: 평범한 배낭 C++
#include #include using namespace std; int n, k; // n: 물품의 수, k: 버틸 수 있는 무게 int DP[101][100001]; int W[101]; int V[101]; int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> n >> k; for (int i = 1; i > W[i] >> V[i]; } for (int i = 1; i
Undergraudate basics(학부생 기초)/자료구조, 알고리즘
2022. 5. 11. 00:44