제출 #720416

#제출 시각아이디문제언어결과실행 시간메모리
720416mseebacherKnapsack (NOI18_knapsack)C++17
0 / 100
0 ms212 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; struct Produkt{ ll v,w,k; }; int main(){ ios::sync_with_stdio(0); cin.tie(nullptr); cout << fixed << setprecision(8); int s,n; cin >> s >> n; vector<Produkt> p(n); for(int i = 0;i<n;i++){ cin >> p[i].v >> p[i].w >> p[i].k; } vector<ll> dp(s+1,0); ll ans = 0; for(int i = 0;i<n;i++){ for(int j = p[i].w;j<=s;j++){ dp[j-p[i].w] = max(dp[j-p[i].w],dp[j] + p[i].v); ans = max(ans,dp[j]); } } cout << ans; }
#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...