# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
209525 | model_code | Knapsack (NOI18_knapsack) | C++14 | 93 ms | 3576 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define MAXN 100004
#define MAXS 2004
using namespace std;
int s,n,w[MAXN];
long long v[MAXN],k[MAXN],dp[MAXS];
typedef pair<int,int> ii;
priority_queue <ii> pq[MAXS];
int main(){
scanf("%d %d",&s,&n);
for(int x=0;x<n;x++){
scanf("%lld %d %lld",&v[x],&w[x],&k[x]);
pq[w[x]].push(make_pair(v[x],k[x]));
}
for(int x=1;x<=s;x++){
long long cnt=s/x;
while(!pq[x].empty()&&cnt){
ii i=pq[x].top();
pq[x].pop();
if(i.second>cnt) i.second=cnt;
cnt-=i.second;
for(int y=0;y<i.second;y++) for(int z=s;z>=x;z--) dp[z]=max(dp[z],dp[z-x]+i.first);
}
}
long long ans=0;
for(int x=1;x<=s;x++) ans=max(ans,dp[x]);
printf("%lld\n",ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |