結果
問題 | No.2364 Knapsack Problem |
ユーザー | Nzt3 |
提出日時 | 2023-06-30 22:30:00 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 3,000 ms |
コード長 | 791 bytes |
コンパイル時間 | 2,157 ms |
コンパイル使用メモリ | 204,052 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 10:20:59 |
合計ジャッジ時間 | 2,890 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N,M,W; cin>>N>>M>>W; vector<array<int,2>>A(N+M); for(int i=0;i<N;i++)cin>>A[i][0]; for(int i=0;i<N;i++)cin>>A[i][1]; for(int i=N;i<N+M;i++)cin>>A[i][0],A[i][0]*=-1; for(int i=N;i<N+M;i++)cin>>A[i][1],A[i][1]*=-1; vector<array<int,2>>dp(1<<(N+M),{-(int)1e9,0}); dp[0][0]=0; auto ok=[&](array<int,2> a,array<int,2> b){ return (a[0]+b[0]>=0&&a[0]+b[0]<=W); }; for(int i=0;i<1<<(N+M);i++){ for(int j=0;j<N+M;j++){ if((i>>j&1)==0&&ok(dp[i],A[j])){ dp[i|(1<<j)][0]=dp[i][0]+A[j][0]; dp[i|(1<<j)][1]=dp[i][1]+A[j][1]; } } } int ans=0; for(int i=0;i<1<<(N+M);i++){ ans=max(ans,dp[i][1]); } cout<<ans<<'\n'; }