結果
問題 | No.2364 Knapsack Problem |
ユーザー | akiaa11 |
提出日時 | 2023-06-30 21:41:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 169 ms / 3,000 ms |
コード長 | 3,037 bytes |
コンパイル時間 | 3,726 ms |
コンパイル使用メモリ | 265,040 KB |
実行使用メモリ | 67,840 KB |
最終ジャッジ日時 | 2024-07-07 09:21:18 |
合計ジャッジ時間 | 6,084 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 6 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,944 KB |
testcase_07 | AC | 16 ms
8,576 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 17 ms
10,368 KB |
testcase_10 | AC | 6 ms
6,944 KB |
testcase_11 | AC | 4 ms
6,944 KB |
testcase_12 | AC | 168 ms
67,840 KB |
testcase_13 | AC | 166 ms
67,712 KB |
testcase_14 | AC | 168 ms
67,712 KB |
testcase_15 | AC | 166 ms
67,840 KB |
testcase_16 | AC | 165 ms
67,840 KB |
testcase_17 | AC | 166 ms
67,840 KB |
testcase_18 | AC | 168 ms
67,840 KB |
testcase_19 | AC | 166 ms
67,840 KB |
testcase_20 | AC | 169 ms
67,840 KB |
testcase_21 | AC | 166 ms
67,712 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> #define SELECTER(_1,_2,_3,SELECT,...) SELECT #define rep1(i,n) for(int i=0;i<(int)n;++i) #define rep2(i,a,n) for(int i=(int)a;i<(int)n;++i) #define rep(...) SELECTER(__VA_ARGS__,rep2,rep1)(__VA_ARGS__) #define RSELECTER(_1, _2, _3, RSELECT, ...) RSELECT #define rrep1(i,n) for(int i=(int)n-1;i>=0;--i) #define rrep2(i,a,n) for(int i=(int)n-1;i>=(int)a;--i) #define rrep(...) RSELECTER(__VA_ARGS__, rrep2, rrep1)(__VA_ARGS__) #define all(a) a.begin(),a.end() #define rall(a) a.rbegin(),a.rend() #define fi first #define se second #define PrintR LogOutput #ifdef _DEBUG #define Log(...) LogOutput(__VA_ARGS__) #else #define Log(...) #endif using namespace std; using namespace atcoder; using ll=long long; using pii=pair<int,int>; using pll=pair<long long,long long>; using pdd=pair<long double,long double>; using veci=vector<int>; using vecpii=vector<pair<int,int>>; using vecll=vector<long long>; using vecpll=vector<pair<long long,long long>>; using vecpdd=vector<pair<long double,long double>>; using vecs=vector<string>; using vecb=vector<bool>; using vecd=vector<long double>; template<class T> inline bool chmax(T& a,T b){if(a<b) {a=b;return true;} return false;} template<class T> inline bool chmin(T& a,T b){if(a>b) {a=b;return true;} return false;} constexpr ll INF=numeric_limits<ll>::max() / 4; constexpr ll MOD=998244353; using tp=tuple<int,int,int>; using tpll=tuple<ll,ll,ll>; using mint=modint998244353; using mint10=modint1000000007; template<typename T, typename std::enable_if_t<!is_same<T, mint>::value && !is_same<T, mint10>::value, nullptr_t> = nullptr> T LogOutput(T a, bool b = true){ if(b) cout << a << endl; return a; } template <typename T, typename std::enable_if_t<is_same<T, mint>::value || is_same<T, mint10>::value, nullptr_t> = nullptr> auto LogOutput(T a, bool b = true) -> decltype(a.val()){ if(b) cout << a.val() << endl; return a.val(); } template<typename... Args> void LogOutput(Args&&... args){ stringstream ss; ((ss << LogOutput(args, false) << ' '), ...); cout << ss.str().substr(0, ss.str().length() - 1) << endl; } template<typename T> void LogOutput(vector<T>& data){ for(int i = 0 ; i < data.size() ; ++i){ cout << LogOutput(data[i], false) << " \n"[i == data.size() - 1]; } } template<typename T> void LogOutput(vector<vector<T>>& data){ for(auto d : data) LogOutput(d); } int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n, m, w;cin>>n>>m>>w; veci a(n), b(n), c(m), d(m); rep(i, n) cin>>a[i]; rep(i, n) cin>>b[i]; rep(i, m) cin>>c[i]; rep(i, m) cin>>d[i]; int k = n + m; vector dp(1 << k, vecll(w + 1, -1)); dp[0][0] = 0; rep(i, 1, 1 << k) rep(j, w + 1){ rep(l, k) if(i >> l & 1){ if(dp[i & ~(1 << l)][j] == -1) continue; pii p; if(l < n) p = {a[l], b[l]}; else p = {-c[l - n], -d[l - n]}; if(j + p.fi >= 0 && j + p.fi <= w) chmax(dp[i][j + p.fi], dp[i & ~(1 << l)][j] + p.se); } } ll ans = 0; rep(i, 1, 1 << k) rep(j, w + 1) chmax(ans, dp[i][j]); cout<<ans<<endl; }