이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vll = vector<ll>;
#define f0r(i,n) for(ll i = 0; i<(ll)(n); i++)
int main(){
ll capacity,n;
cin>>capacity>>n;
ll value[n], weight[n], quantity[n];
f0r(i,n) cin>>value[i]>>weight[i]>>quantity[i];
ll dp[capacity+1]; // in theory: dp[n+1][capacity+1]; but made 1D for memory saving
f0r(j,capacity+1) dp[j] = 0; // initial row with nothing considered
ll dpMax = 0;
f0r(i,n){
// considering item i
ll boughtCount[capacity+1];
for(ll j = capacity; j>=0; j--){
boughtCount[j] = 0;
if(j+1<=capacity){
if(dp[j+1]>dp[j]){
dp[j] = dp[j+1];
boughtCount[j] = boughtCount[j+1];
}
}
if(j+weight[i]<=capacity){
if(boughtCount[j+weight[i]]+1<=quantity[i] && dp[j+weight[i]]+value[i]>dp[j]){
dp[j] = dp[j+weight[i]]+value[i];
boughtCount[j] = boughtCount[j+weight[i]]+1;
}
}
}
f0r(j,capacity+1){
dpMax = max(dpMax,dp[j]);
// cout<<setw(5)<<dp[j];
}
// cout<<"\n";
}
cout<<dpMax;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |