# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
486904 | YHC2538 | Knapsack (NOI18_knapsack) | C++14 | 1 ms | 332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
void _debug(){cerr<<'\n';}
template<typename A,typename...B>
void _debug(A a,B...b){cerr<<a<<' ',_debug(b...);}
#define debug(args...) cerr<<"("<<(#args)<<"): ", _debug(args);
#define pii pair<int,int>
#define all(x) (x).begin(),(x).end()
typedef long long ll;
const int N=2005;
ll dp[N];
int main(){
int s,n; cin>>s>>n;
vector<vector<pii>> weight(s+1);
for(int i=1;i<=n;i++){
int v,w,k; cin>>v>>w>>k;
weight[w].push_back({v,k});
}
for(int i=1;i<=s;i++){
sort(all(weight[i]));
if(weight[i].size()==0) continue;
int id=0; //next item with weight i
for(int j=1;j*i<=s;j++){
if(id>=weight[i].size()) break;
for(int k=s;k>=i;k--){
dp[k]=max(dp[k],dp[k-i]+weight[i][id].first);
}
if(--weight[i][id].second==0) id++;
}
}
cout<<dp[s]<<'\n';
}
컴파일 시 표준 에러 (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... |