# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
650289 | ono_de206 | Knapsack (NOI18_knapsack) | C++14 | 126 ms | 4904 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
const int mxn=1e5+10;
const int mxm=2010;
vector<pair<int,int>> lol[mxm];
int dp[2][mxm];
signed main(){
// freopen("feast.in","r",stdin);
// freopen("feast.out","w",stdout);
int s,n;
cin>>s>>n;
for(int i=0; i<n; i++){
int v,w,k;
cin>>v>>w>>k;
lol[w].push_back({v,k});
}
int st=1;
for(int i=1; i<=s; i++){
if(lol[i].empty()) continue;
st^=1;
sort(lol[i].rbegin(),lol[i].rend());
for(int j=1; j<=s; j++) dp[st][j]=dp[st^1][j];
for(int j=1; j<=s; j++){
int idx=0;
int now=1;
int hhe=0;
int cur=0;
while(now*i<=j && hhe<lol[i].size()){
cur+=lol[i][hhe].first;
if(dp[st^1][j-(now*i)]+cur>dp[st][j]){
dp[st][j]=dp[st^1][j-(now*i)]+cur;
}
now++;
idx++;
if(idx==lol[i][hhe].second){
hhe++;
idx=0;
}
}
}
}
int ans=0;
for(int i=1; i<=s; i++) ans=max(ans,dp[st][i]);
cout<<ans<<'\n';
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... |