結果

問題 No.2889 Rusk
ユーザー haihamabossuhaihamabossu
提出日時 2024-09-13 22:09:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 959 bytes
コンパイル時間 2,394 ms
コンパイル使用メモリ 207,112 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-09-13 22:09:55
合計ジャッジ時間 6,969 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 20 ms
5,376 KB
testcase_16 AC 46 ms
5,376 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 39 ms
5,376 KB
testcase_19 AC 74 ms
6,272 KB
testcase_20 AC 90 ms
7,168 KB
testcase_21 AC 73 ms
6,400 KB
testcase_22 AC 63 ms
6,144 KB
testcase_23 AC 50 ms
5,376 KB
testcase_24 AC 90 ms
7,168 KB
testcase_25 AC 49 ms
5,376 KB
testcase_26 AC 71 ms
6,528 KB
testcase_27 AC 94 ms
7,296 KB
testcase_28 AC 55 ms
5,632 KB
testcase_29 AC 57 ms
5,632 KB
testcase_30 AC 56 ms
5,760 KB
testcase_31 AC 92 ms
7,168 KB
testcase_32 AC 40 ms
5,376 KB
testcase_33 AC 13 ms
5,376 KB
testcase_34 AC 107 ms
7,936 KB
testcase_35 AC 107 ms
7,808 KB
testcase_36 AC 108 ms
7,936 KB
testcase_37 AC 107 ms
7,936 KB
testcase_38 AC 107 ms
7,936 KB
testcase_39 AC 67 ms
7,552 KB
testcase_40 AC 53 ms
6,528 KB
testcase_41 AC 71 ms
7,680 KB
testcase_42 AC 49 ms
6,272 KB
testcase_43 AC 23 ms
5,376 KB
testcase_44 AC 64 ms
7,168 KB
testcase_45 AC 49 ms
6,144 KB
testcase_46 AC 15 ms
5,376 KB
testcase_47 AC 26 ms
5,376 KB
testcase_48 AC 57 ms
6,784 KB
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 110 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

void solve() {
  ll n;
  cin >> n;
  vector<ll> a(n);
  rep(i, n) cin >> a[i];
  vector<ll> b(n);
  rep(i, n) cin >> b[i];
  vector<ll> c(n);
  rep(i, n) cin >> c[i];
  vector dp(3, vector<ll>(3, 0));
  rep(i, n) {
    vector nex(3, vector<ll>(3, -1));
    rep(nj, 3) rep(nk, 3) rep(pj, nj + 1) rep(pk, nk + 1) nex[nj][nk] =
        max(nex[nj][nk], dp[pj][pk]);
    rep(j, 3) rep(k, 3) {
      ll cnt = (j == 1) + (k == 1);
      if (cnt == 0)
        nex[j][k] += a[i];
      if (cnt == 1)
        nex[j][k] += b[i];
      if (cnt == 2)
        nex[j][k] += c[i];
    }
    swap(dp, nex);
  }
  ll ans = 0;
  rep(j, 3) rep(k, 3) ans = max(ans, dp[j][k]);
  cout << ans << '\n';
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0