結果
問題 | No.974 最後の日までに |
ユーザー | kyo1 |
提出日時 | 2020-06-16 15:55:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,203 bytes |
コンパイル時間 | 2,143 ms |
コンパイル使用メモリ | 210,248 KB |
実行使用メモリ | 30,976 KB |
最終ジャッジ日時 | 2024-07-03 11:54:29 |
合計ジャッジ時間 | 14,955 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 482 ms
30,976 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 486 ms
30,976 KB |
testcase_06 | AC | 476 ms
30,976 KB |
testcase_07 | AC | 483 ms
30,976 KB |
testcase_08 | AC | 474 ms
30,976 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 508 ms
30,976 KB |
testcase_14 | AC | 507 ms
30,848 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 28 ms
6,940 KB |
testcase_18 | AC | 28 ms
6,940 KB |
testcase_19 | AC | 27 ms
6,940 KB |
testcase_20 | AC | 30 ms
6,940 KB |
testcase_21 | AC | 29 ms
6,940 KB |
testcase_22 | AC | 28 ms
6,940 KB |
testcase_23 | AC | 28 ms
6,944 KB |
testcase_24 | AC | 28 ms
6,944 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | AC | 51 ms
6,944 KB |
testcase_31 | AC | 2 ms
6,940 KB |
testcase_32 | AC | 2 ms
6,944 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 2 ms
6,940 KB |
testcase_36 | AC | 2 ms
6,940 KB |
testcase_37 | WA | - |
testcase_38 | AC | 2 ms
6,940 KB |
testcase_39 | AC | 1 ms
6,940 KB |
testcase_40 | AC | 21 ms
6,940 KB |
testcase_41 | AC | 28 ms
6,944 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 1 ms
6,940 KB |
testcase_47 | WA | - |
testcase_48 | AC | 1 ms
6,944 KB |
testcase_49 | AC | 2 ms
6,944 KB |
testcase_50 | AC | 2 ms
6,944 KB |
testcase_51 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const int64_t INF = INT64_C(1) << 60; template <typename T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } int main() { ios::sync_with_stdio(false); cin.tie(0); int W; cin >> W; vector<int64_t> A(W), B(W), C(W); for (int i = 0; i < W; i++) { cin >> A[i] >> B[i] >> C[i]; } function<void(int, int, int64_t, int64_t, map<int64_t, int64_t> &)> dfs = [&](int now, int end, int64_t money, int64_t love, map<int64_t, int64_t> &mp) { if (now == end) { chmax(mp[money], love); return; } dfs(now + 1, end, money + A[now], love, mp); if (now + 1 < end) dfs(now + 2, end, money - C[now + 1], love + B[now + 1], mp); }; auto solve = [&](int w) { map<int64_t, int64_t> A, B; // B[INF] = -INF; // B[-INF] = -INF; dfs(0, w, 0, 0, A); dfs(w, W, 0, 0, B); int64_t res = 0; for (const auto &[key, value] : A) { auto itr = B.lower_bound(-key); if (itr != B.end()) res = max(res, itr->second + value); } return res; }; cout << max(solve(W / 2), solve(W / 2 + 1)) << '\n'; return 0; }