結果

問題 No.2889 Rusk
ユーザー 4094706840947068
提出日時 2024-09-18 19:17:58
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 3,417 bytes
コンパイル時間 4,730 ms
コンパイル使用メモリ 234,020 KB
実行使用メモリ 44,668 KB
最終ジャッジ日時 2024-09-18 19:18:30
合計ジャッジ時間 13,543 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 14 ms
5,376 KB
testcase_15 AC 55 ms
9,856 KB
testcase_16 AC 134 ms
20,512 KB
testcase_17 AC 38 ms
7,936 KB
testcase_18 AC 116 ms
17,668 KB
testcase_19 AC 218 ms
31,240 KB
testcase_20 AC 271 ms
37,868 KB
testcase_21 AC 219 ms
31,504 KB
testcase_22 AC 186 ms
27,296 KB
testcase_23 AC 154 ms
22,256 KB
testcase_24 AC 268 ms
37,348 KB
testcase_25 AC 148 ms
21,864 KB
testcase_26 AC 213 ms
30,564 KB
testcase_27 AC 279 ms
38,692 KB
testcase_28 AC 165 ms
24,048 KB
testcase_29 AC 192 ms
24,860 KB
testcase_30 AC 183 ms
24,724 KB
testcase_31 AC 280 ms
38,288 KB
testcase_32 AC 117 ms
18,204 KB
testcase_33 AC 33 ms
7,424 KB
testcase_34 AC 316 ms
44,664 KB
testcase_35 AC 325 ms
44,668 KB
testcase_36 AC 346 ms
44,664 KB
testcase_37 AC 321 ms
44,668 KB
testcase_38 AC 322 ms
44,668 KB
testcase_39 AC 157 ms
40,864 KB
testcase_40 AC 126 ms
32,572 KB
testcase_41 AC 164 ms
42,628 KB
testcase_42 AC 111 ms
30,276 KB
testcase_43 AC 51 ms
15,744 KB
testcase_44 AC 144 ms
38,416 KB
testcase_45 AC 114 ms
30,012 KB
testcase_46 AC 32 ms
10,496 KB
testcase_47 AC 57 ms
16,980 KB
testcase_48 AC 136 ms
34,756 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 343 ms
44,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<sstream>
#include<algorithm>
#include<deque>
#include<list>
#include<map>
#include<memory>
#include<queue>
#include<set>
#include<stack>
#include<utility>
#include<string.h>
#include<string>
#include<math.h>
#include<float.h>
#include<stdio.h>
#include<vector>
#include<iomanip>
#include<bitset>
#include<random>
#include<complex>
#include <cassert>
#include <utility>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<typename T> inline bool chmin(T &a, T b) { return ((a>b) ? (a = b, true) : (false));}
#define rep(i,s,n) for(long long i=s;i<(long long)(n);i++)
#define rrep(i,s,n) for(long long i=n-1;i>=s;i--)
const long long inf = 1LL<<60;
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
//pairのsecondでソートsort(p.begin(),p.end(),cmp)
#define cmp [](pair<ll,ll> a, pair<ll,ll> b){return a.second<b.second;}
//cmpArg := 偏角ソート, atan2l(y, x); atan2l(y, x) = [-pi, pi]
#define cmpArg [](const auto &p1, const auto &p2) { return atan2l(p1.second, p1.first) < atan2l(p2.second, p2.first); }
typedef pair<long long, long long> P;
typedef pair<ll, pair<ll,ll> > PP;
#define rll ll,vector<ll>,greater<ll>
#define rP P,vector<P>,greater<P>
const long double pi = 3.14159265358979;
typedef unsigned long long ull;
#define vll vector<ll>
#define vvll vector<vector<ll>>
#define vmint vector<mint>
#define vvmint vector<vector<mint>>
#define vvch vector<vector<char>>
#define vch vector<char>
#define vstring vector<string>
#define rPP PP,vector<PP>,greater<PP>
#define vP vector<P> 
#define vvP vector<vector<P>>
#define vPP vector<PP>
#define all(x) x.begin(), x.end()
//UNIQUE(x) xをソートして値の被りがないようにする
#define UNIQUE(x) sort(all(x)), x.erase(unique(all(x)), x.end())
int pc(ll x) { return __builtin_popcount(x); } //ビット列にどれだけ1がたっているかを求める pop count
//逆順のlower_bound(単調減少関数で自分以下を二分探索)するときは`ll index = lower_bound(all(inv), -a[i], greater<ll>()) - inv.begin();`, 逆からみたlis的なやつが作れる
//オバフロしない計算はa > inf - b および a > inf / bでとってね
//半分全列挙は前の方を(siz+1)/2ででかくする
//using mint = atcoder::modint, main関数でmint::set_mod(M)とすると任意modのmintにできる
//mapでも auto it = mp.lower_bound(key)としてlower_boundが使用できる while(it != mp.end())でループすることもできる

using mint = modint998244353;

int main()
{
    int n; cin >> n;
    vector<vector<int>> a(3,vector<int>(n));
    rep(i,0,3) rep(j,0,n) cin >> a[i][j];

    //高々2回しかトースターを使用できないのでどうとでもなりそう
    //dp[i][j][k] := i番目, j,kは1こめ2こめのトースターを使用したかどうか
    vector<vector<vector<long long>>> dp(n+1,vector<vector<long long>>(3,vector<long long>(3,0)));
    int use[]={0,1,0};
    rep(i,0,n) {
        //現状維持
        rep(j,0,3) rep(k,0,3) chmax(dp[i+1][j][k], dp[i][j][k] + a[use[j]+use[k]][i]);
        //コンロの変更
        rep(j,0,3) rep(nj,j,3) rep(k,0,3) rep(nk,k,3) chmax(dp[i+1][nj][nk], dp[i+1][j][k]);
    }
    long long ans = 0;
    rep(i,0,3) rep(j,0,3) chmax(ans, dp[n][i][j]);
    cout << ans << endl;
}
0