結果
問題 | No.974 最後の日までに |
ユーザー | 鴨志田卓 |
提出日時 | 2023-07-27 16:16:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,096 bytes |
コンパイル時間 | 2,070 ms |
コンパイル使用メモリ | 210,412 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-04 13:45:05 |
合計ジャッジ時間 | 7,156 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | AC | 2 ms
6,820 KB |
testcase_30 | RE | - |
testcase_31 | AC | 2 ms
6,816 KB |
testcase_32 | AC | 1 ms
6,820 KB |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | AC | 1 ms
6,816 KB |
testcase_36 | AC | 2 ms
6,816 KB |
testcase_37 | RE | - |
testcase_38 | AC | 2 ms
6,820 KB |
testcase_39 | AC | 2 ms
6,816 KB |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | AC | 2 ms
6,816 KB |
testcase_47 | AC | 2 ms
6,816 KB |
testcase_48 | AC | 2 ms
6,816 KB |
testcase_49 | AC | 2 ms
6,820 KB |
testcase_50 | AC | 2 ms
6,816 KB |
testcase_51 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using i64 = long long; using pii = pair<i64, i64>; i64 w, mid, a[55], b[55], c[55]; i64 maxl = 0; vector<pii> ans[55]; void dfs1(int l, int r, i64 x, i64 y) { if(l >= r) { ans[l].push_back({x, y}); return; } dfs1(l + 1, r, x + a[l], y); dfs1(l + 2, r, x - c[l + 1], y + b[l + 1]); } void dfs2(int r, i64 x, i64 y) { if(r < mid - 1) return; if(ans[r + 1].size()) { maxl = max(maxl, lower_bound(ans[r + 1].begin(), ans[r + 1].end(), pii{-x, 0})->second + y); } dfs2(r - 1, x + a[r], y); dfs2(r - 2, x - c[r], y + b[r]); } int main() { cin >> w; assert(w <= 26); for(int i = 0; i < w; i ++) cin >> a[i] >> b[i] >> c[i]; mid = w / 2; dfs1(0, mid, 0, 0); for(auto t : {mid, mid + 1}) { sort(ans[t].begin(), ans[t].end()); ans[t].push_back({1e18, -1e18}); for(int i = (int)ans[t].size() - 2; i >= 0; i --) ans[t][i].second = max(ans[t][i].second, ans[t][i + 1].second); } dfs2(w - 1, 0, 0); cout << maxl; }