# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
917463 | PieArmy | Knapsack (NOI18_knapsack) | C++17 | 12 ms | 664 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fr first
#define sc second
#define pb push_back
#define endl '\n';
typedef long long ll;
const ll inf=2000000000000000005;
using namespace std;
ll pie(ll army){return (1ll<<army);}
ll fpow(ll x,ll y,ll m=0){if(y<0){cout<<"powError";return -1;}if(m)x%=m;ll res=1;while(y>0){if(y&1)res*=x;x*=x;if(m){x%=m;res%=m;}y>>=1;}return res;}
void code(){
int k,n;cin>>k>>n;
int v[n],w[n],cnt[n];
for(int i=0;i<n;i++)cin>>v[i]>>w[i]>>cnt[i];
vector<int>dp(k+1,0);
for(int i=0;i<n;i++){
vector<int>dp2(k+1,0);
vector<multiset<int>>st(k+1,multiset<int>());
for(int j=0;j<=k;j++){
st[j].insert(((k/w[i])-(j/w[i]))*v[i]+dp[j]);
dp2[j]=(*(--st[j].end()))-(((k/w[i])-(j/w[i]))*v[i]);
if(j>=w[i]*cnt[i]){
st[j].erase(st[j].find(((k/w[i])-((j-(w[i]*cnt[i]))/w[i]))*v[i]+dp[j-(w[i]*cnt[i])]));
}
if(j+w[i]<=k)swap(st[j],st[j+w[i]]);
}
swap(dp,dp2);
}
int ans=0;
for(int i=0;i<=k;i++)ans=max(ans,dp[i]);
cout<<ans;
}
int main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);
bool usaco=0;if(usaco){freopen(".in","r",stdin);freopen(".out","w",stdout);}
int t=1;
if(!t)cin>>t;
while(t--){code();cout<<endl;}
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... |