結果
問題 | No.2730 Two Types Luggage |
ユーザー | 赤信号 |
提出日時 | 2024-05-03 10:22:52 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,061 bytes |
コンパイル時間 | 3,266 ms |
コンパイル使用メモリ | 262,208 KB |
実行使用メモリ | 814,620 KB |
最終ジャッジ日時 | 2024-11-24 09:31:18 |
合計ジャッジ時間 | 37,623 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 5 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | MLE | - |
testcase_34 | MLE | - |
testcase_35 | MLE | - |
testcase_36 | MLE | - |
testcase_37 | MLE | - |
ソースコード
#pragma GCC optimize("O3") #ifdef LOCAL #include "algo/debug_ver3.hpp" #else #define debug(...) #define debugArr(...) #endif #include <bits/stdc++.h> using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n, m; long long w; cin >> n >> m >> w; vector<long long> a(n), b(m), c(m); for (int i = 0; i < n; ++i) cin >> a[i]; for (int i = 0; i < m; ++i) cin >> b[i]; for (int i = 0; i < m; ++i) cin >> c[i]; vector<vector<long long>> dp(n + 1, vector<long long>(n + 1)); for (int i = 0; i < n; ++i) for (int j = 0; j <= n; ++j) { if (j + 1 <= n) dp[i][j + 1] = max(dp[i][j + 1], dp[i][j]); if (j + 1 <= n) dp[i + 1][j + 1] = max(dp[i + 1][j + 1], dp[i][j] + a[i]); dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]); } long long res = 0; for (int bit = 0; bit < 1 << m; ++bit) { long long weight = 0, value = 0; for (int i = 0; i < m; ++i) if (bit & 1 << i) weight += b[i], value += c[i]; if (weight > w) continue; res = max(res, value + dp[n][min(w - weight, (long long)(n))]); } cout << res << '\n'; }