# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
917438 | PieArmy | Knapsack (NOI18_knapsack) | C++17 | 1 ms | 500 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);
vector<pair<int,int>>ek(k+1,make_pair(-1,0));
for(int i=0;i<n;i++){
vector<int>dp2(k+1,0);
vector<pair<int,int>>ek2(k+1,make_pair(-1,0));
for(int j=0;j<=k;j++){
dp2[j]=max(dp2[j],max(dp[j],ek[j].fr));
if(j+w[i]<=k){
if(dp[j]>=ek[j].fr){
ek[j+w[i]]={dp[j]+v[i],cnt[i]-1};
}
else{
if(ek[j].sc){
ek[j+w[i]]={ek[j].fr+v[i],ek[j].sc-1};
}
if(j+(ek[j].sc*w[i])+w[i]<=k){
ek[j+(ek[j].sc*w[i])+w[i]]={dp[j]+(ek[j].sc*v[i])+v[i],cnt[i]-ek[j].sc-1};
}
}
}
}
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... |