結果

問題 No.2982 Logic Battle
ユーザー dyktr_06dyktr_06
提出日時 2024-11-22 04:05:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,440 bytes
コンパイル時間 951 ms
コンパイル使用メモリ 77,696 KB
実行使用メモリ 590,080 KB
最終ジャッジ日時 2024-12-06 23:30:15
合計ジャッジ時間 13,573 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 401 ms
448,768 KB
testcase_11 AC 188 ms
220,544 KB
testcase_12 AC 154 ms
177,920 KB
testcase_13 AC 219 ms
238,464 KB
testcase_14 MLE -
testcase_15 AC 20 ms
21,888 KB
testcase_16 AC 288 ms
332,928 KB
testcase_17 AC 125 ms
142,208 KB
testcase_18 AC 341 ms
399,232 KB
testcase_19 AC 30 ms
36,480 KB
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 AC 2 ms
5,248 KB
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

template <typename T>
long long trisum(T a, T b){
    if(a > b) return T(0);
    long long res = ((b - a + 1) * (a + b)) / 2;
    return res;
}

const long long INF = 1LL << 60;

long long dp[5001][5001][3];

int main(){
    int n; cin >> n;
    vector<vector<int>> a(n, vector<int>(3));
    for(int i = 0; i < n; i++){
        for(int j = 0; j < 3; j++){
            cin >> a[i][j];
        }
    }
    for(int i = 0; i <= n; i++){
        for(int j = 0; j <= n; j++){
            for(int k = 0; k < 3; k++){
                dp[i][j][k] = -INF;
            }
        }
    }
    dp[0][0][0] = dp[0][0][1] = dp[0][0][2] = 0;
    for(int i = 0; i < n; i++){
        for(int j = 0; j <= n - i; j++){
            long long d = n - i - j;
            for(int k1 = 0; k1 < 3; k1++){
                if(dp[i][j][k1] == -INF) continue;
                for(int k2 = 0; k2 < 3; k2++){
                    if(k1 == k2) continue;
                    int nj = min(n - i, j + a[i][k2]);
                    dp[i + 1][max(0, nj - 1)][k2] = max(dp[i + 1][nj - 1][k2], dp[i][j][k1] + trisum(j + 1LL, j + min(d, (long long) a[i][k2])) + max(0LL, a[i][k2] - d) * (n - i));
                }
            }
        }
    }
    long long ans = 0;
    for(int i = 0; i <= n; i++){
        for(int j = 0; j < 3; j++){
            ans = max(ans, dp[n][i][j]);
        }
    }
    cout << ans << endl;
}
0