結果

問題 No.2982 Logic Battle
ユーザー 👑 NachiaNachia
提出日時 2024-12-07 02:27:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 1,686 bytes
コンパイル時間 1,162 ms
コンパイル使用メモリ 85,984 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-07 02:28:03
合計ジャッジ時間 8,518 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 214 ms
5,248 KB
testcase_11 AC 108 ms
5,248 KB
testcase_12 AC 84 ms
5,248 KB
testcase_13 AC 111 ms
5,248 KB
testcase_14 AC 286 ms
5,248 KB
testcase_15 AC 10 ms
5,248 KB
testcase_16 AC 158 ms
5,248 KB
testcase_17 AC 77 ms
5,248 KB
testcase_18 AC 189 ms
5,248 KB
testcase_19 AC 16 ms
5,248 KB
testcase_20 AC 294 ms
5,248 KB
testcase_21 AC 296 ms
5,248 KB
testcase_22 AC 292 ms
5,248 KB
testcase_23 AC 303 ms
5,248 KB
testcase_24 AC 296 ms
5,248 KB
testcase_25 AC 288 ms
5,248 KB
testcase_26 AC 296 ms
5,248 KB
testcase_27 AC 302 ms
5,248 KB
testcase_28 AC 291 ms
5,248 KB
testcase_29 AC 287 ms
5,248 KB
testcase_30 AC 264 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 289 ms
5,248 KB
testcase_33 AC 271 ms
5,248 KB
testcase_34 AC 277 ms
5,248 KB
testcase_35 AC 274 ms
5,248 KB
testcase_36 AC 287 ms
5,248 KB
testcase_37 AC 272 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef NACHIA
#define _GLIBCXX_DEBUG
#else
#define NDEBUG
#endif
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<int(n); i++)
const i64 INF = 1001001001001001001;
template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; }
template<typename A> void chmax(A& l, const A& r){ if(l < r) l = r; }
using namespace std;
#include <atcoder/modint>
using Modint = atcoder::static_modint<998244353>;

void testcase(){
    int N; cin >> N;
    vector<vector<i64>> A(N);
    rep(i,N){
        A[i].resize(3);
        rep(j,3) cin >> A[i][j];
    }
    vector<vector<i64>> dp(3, vector<i64>(N+1, -INF));
    rep(x,3) dp[x][0] = 0;
    i64 t_left = N;
    for(auto& a : A){
        vector<vector<i64>> nx(3, vector<i64>(N+1, -INF));
        rep(i,3){
            i64 b = a[i];
            rep(x,N){
                if(x+b >= N){
                    chmax(nx[i][N], dp[i][x] + (x+b) * t_left - (t_left * (t_left-1) / 2));
                } else {
                    chmax(nx[i][x+b], dp[i][x]);
                }
            }
            chmax(nx[i][N], dp[i][N] + b * t_left);
        }
        vector<vector<i64>> nx2(3, vector<i64>(N+1, -INF));
        rep(t,3) rep(s,3) if(s != t){
            chmax(nx2[t][0], nx[s][0]);
            rep(i,N-1) chmax(nx2[t][i], nx[s][i+1] + (i+1));
            chmax(nx2[t][N], nx[s][N]);
        }
        t_left--;
        swap(dp, nx2);
    }
    i64 ans = -INF;
    rep(j,3) rep(i,N+1) chmax(ans, dp[j][i]);
    cout << ans << endl;
}

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    testcase();
    return 0;
}
0