이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
const int maxn=100005;
int c[maxn],value[maxn],num[maxn],dp[maxn];
int V;
void ZeroOnePack (int cost,int val){
for(int i=V;i>=cost;i--)
dp[i]=std::max(dp[i],dp[i-cost] + val);
return ;
}
void MultiplePack(int cost, int val, int tot){
int k=1; // binary partition
while(k<tot){
ZeroOnePack(k * cost, k * val);
tot-=k;
k*=2;
}
ZeroOnePack(tot*cost,tot*val);
return ;
}
int main(){
int n;
std::cin>>V>>n; // knapsack size V, n kinds of items
for(int i=1;i<=n;i++)
std::cin>>value[i]>>c[i]>>num[i]; // value, weight, quantity
for(int i=1;i<=n;i++)
MultiplePack(c[i], value[i], num[i]);
std::cout<<dp[V]<<'\n';
return 0;
}
# | 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... |