結果
問題 | No.2889 Rusk |
ユーザー | noimi |
提出日時 | 2024-09-13 21:33:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,936 bytes |
コンパイル時間 | 2,343 ms |
コンパイル使用メモリ | 207,904 KB |
実行使用メモリ | 32,896 KB |
最終ジャッジ日時 | 2024-09-13 21:34:10 |
合計ジャッジ時間 | 6,856 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
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 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | AC | 2 ms
5,376 KB |
testcase_50 | AC | 2 ms
5,376 KB |
testcase_51 | AC | 2 ms
5,376 KB |
testcase_52 | AC | 2 ms
5,376 KB |
testcase_53 | AC | 2 ms
5,376 KB |
testcase_54 | AC | 113 ms
32,896 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define pii pair<int, int> #define pll pair<ll, ll> #define vi vector<int> #define vl vector<ll> #define ov4(a, b, c, d, name, ...) name #define rep3(i, a, b, c) for(ll i = (a); i < (b); i += (c)) #define rep2(i, a, b) rep3(i, a, b, 1) #define rep1(i, n) rep2(i, 0, n) #define rep0(n) rep1(aaaaa, n) #define rep(...) ov4(__VA_ARGS__, rep3, rep2, rep1, rep0)(__VA_ARGS__) #define per(i, a, b) for(ll i = (a) - 1; i >= (b); i--) #define fore(e, v) for(auto &&e : v) #define all(a) begin(a), end(a) #define si(a) (int)(size(a)) #define lb(v, x) (lower_bound(all(v), x) - begin(v)) #define eb emplace_back template <typename T, typename S> bool chmin(T &a, const S &b) { return a > b ? a = b, 1 : 0; } template <typename T, typename S> bool chmax(T &a, const S &b) { return a < b ? a = b, 1 : 0; } const int INF = 1e9 + 100; const ll INFL = 3e18 + 100; #define i128 __int128_t struct _ { _() { cin.tie(0)->sync_with_stdio(0), cout.tie(0); } } __; int main() { int n; cin >> n; vl a(n), b(n), c(n); fore(e, a) cin >> e; fore(e, b) cin >> e; fore(e, c) cin >> e; ll ma = 0; // 0 (1 or 2) 0 vector<vl> dp(n + 1, vl(3, -INFL)); dp[0][0] = dp[0][1] = dp[0][2] = 0; rep(i, n) { chmax(dp[i + 1][0], dp[i][0] + a[i]); chmax(dp[i + 1][1], max(dp[i][0] + a[i], dp[i][1] + max(b[i], c[i]))); chmax(dp[i + 1][2], max(dp[i][1] + max(b[i], c[i]), dp[i][2] + a[i])); } chmax(ma, *max_element(all(dp[n]))); // 0 1 0 1 0 dp = vector<vl>(n + 1, vl(5, -INFL)); rep(j, 5) dp[0][j] = 0; rep(i, n) { chmax(dp[i + 1][0], dp[i][0] + a[i]); rep(j, 1, 5) { chmax(dp[i + 1][j], dp[i][j - 1] + (j & 1 ? a[i] : b[i])); chmax(dp[i + 1][j], dp[i][j] + (~j & 1 ? a[i] : b[i])); } } chmax(ma, *max_element(all(dp[n]))); cout << ma << endl; }