結果
問題 | No.2364 Knapsack Problem |
ユーザー | planes |
提出日時 | 2023-06-30 22:23:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,050 bytes |
コンパイル時間 | 1,443 ms |
コンパイル使用メモリ | 175,064 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 10:14:14 |
合計ジャッジ時間 | 2,044 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll =long long; #define all(v) v.begin(),v.end() #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) ll INF=1e18; int main() { ll N,M,W;cin>>N>>M>>W; vector<ll> A(N),B(N),C(M),D(M); for(ll i=0;i<N;i++) cin>>A[i]; for(ll i=0;i<N;i++) cin>>B[i]; for(ll i=0;i<M;i++) cin>>C[i]; for(ll i=0;i<M;i++) cin>>D[i]; vector<vector<vector<ll>>> dp(N+1,vector<vector<ll>> (M+1,vector<ll> (W+1,-INF))); dp[0][0][0]=0; for(ll i=0;i<=N;i++) { for(ll j=0;j<=M;j++) { if(i==0&&j==0) continue; for(ll h=0;h<=W;h++) { if(i>0) { dp[i][j][h]=max(dp[i][j][h],dp[i-1][j][h]); if(h-A[i-1]>=0) { dp[i][j][h]=max(dp[i][j][h],dp[i-1][j][h-A[i-1]]+B[i-1]); } } if(j>0) { dp[i][j][h]=max(dp[i][j][h],dp[i][j-1][h]); if(h+C[j-1]<=W) { dp[i][j][h]=max(dp[i][j][h],dp[i][j-1][h+C[j-1]]-D[j-1]); } } } } } ll ans=0; for(ll i=0;i<=W;i++) ans=max(ans,dp[N][M][i]); cout<<ans<<endl; }