제출 #484430

#제출 시각아이디문제언어결과실행 시간메모리
484430maxshevKnapsack (NOI18_knapsack)C++14
0 / 100
1081 ms204 KiB
#include <bits/stdc++.h> using namespace std; int main() { int s, n; cin >> s >> n; int v[2001], w[2001], k[2001]; for (int i = 1; i <= n; i++) { cin >> v[i] >> w[i] >> k[i]; } int dp[2001]; dp[0] = 0; for (int i = 1; i <= n; i++) { for (int x = s; x >= 0; x--) { for (int j = 0; j <= k[i]; j++) { if (x >= j * w[i]) { dp[x] = max(dp[x], dp[x - (j * w[i])] + (j * v[i])); } } } } cout << dp[s] << '\n'; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...