結果
問題 | No.2982 Logic Battle |
ユーザー | coindarw |
提出日時 | 2024-12-07 16:18:59 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 997 ms / 2,000 ms |
コード長 | 2,096 bytes |
コンパイル時間 | 5,103 ms |
コンパイル使用メモリ | 251,356 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-07 16:19:26 |
合計ジャッジ時間 | 26,554 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 699 ms
5,248 KB |
testcase_11 | AC | 327 ms
5,248 KB |
testcase_12 | AC | 263 ms
5,248 KB |
testcase_13 | AC | 379 ms
5,248 KB |
testcase_14 | AC | 903 ms
5,248 KB |
testcase_15 | AC | 29 ms
5,248 KB |
testcase_16 | AC | 502 ms
5,248 KB |
testcase_17 | AC | 214 ms
5,248 KB |
testcase_18 | AC | 632 ms
5,248 KB |
testcase_19 | AC | 48 ms
5,248 KB |
testcase_20 | AC | 942 ms
5,248 KB |
testcase_21 | AC | 997 ms
5,248 KB |
testcase_22 | AC | 973 ms
5,248 KB |
testcase_23 | AC | 973 ms
5,248 KB |
testcase_24 | AC | 962 ms
5,248 KB |
testcase_25 | AC | 950 ms
5,248 KB |
testcase_26 | AC | 973 ms
5,248 KB |
testcase_27 | AC | 970 ms
5,248 KB |
testcase_28 | AC | 947 ms
5,248 KB |
testcase_29 | AC | 932 ms
5,248 KB |
testcase_30 | AC | 917 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 907 ms
5,248 KB |
testcase_33 | AC | 915 ms
5,248 KB |
testcase_34 | AC | 895 ms
5,248 KB |
testcase_35 | AC | 907 ms
5,248 KB |
testcase_36 | AC | 913 ms
5,248 KB |
testcase_37 | AC | 907 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using ll = long long; #define rep(i, n) for (int i = 0, i##_len = (n); i < i##_len; ++i) #define reps(i, n) for (int i = 1, i##_len = (n); i <= i##_len; ++i) #define rrep(i, n) for (int i = ((int)(n)-1); i >= 0; --i) #define rreps(i, n) for (int i = ((int)(n)); i > 0; --i) #define rep2(i, s, n) for (int i = (s); i < (int)(n); i++) #define repc2(i, s, n) for (int i = (s); i <= (int)(n); i++) constexpr int inf = 2000'000'000; constexpr ll M7 = 1000000007ll; constexpr ll M09 = 1000000009ll; constexpr ll M9 = 998244353ll; #define all(v) begin(v), end(v) #define rall(v) rbegin(v), rend(v) constexpr ll linf = 0x3f3f3f3f3f3f3f3f; using namespace std; using P = pair<ll, ll>; P dp[2][3][5001]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; vector<vector<ll>> a(n, vector<ll>(3)); rep(i, n) rep(j, 3) cin >> a[i][j]; rep(i, 2) rep(j, 3) rep(k, n + 1) dp[i][j][k] = {-linf, -linf}; dp[0][0][0] = dp[0][1][0] = dp[0][2][0] = {0, 0}; auto fmax = [&](P a, P b, int i) { ll t = n - 1 - i; auto [da, xa] = a; auto [db, xb] = b; if (da == -linf) return b; if (db == -linf) return a; if (xa == xb) return da > db ? a : b; ll sa = da + t * xa - (1 + t) * t / 2; ll sb = db + t * xb - (1 + t) * t / 2; return sa > sb ? a : b; }; rep(i, n) { rep(j, 3) { rep(k, n + 1) { auto [d, x] = dp[i % 2][j][k]; rep(nj, 3) { if (j == nj) continue; ll aij = a[i][nj]; ll nx = max<ll>(0ll, x + aij - 1); ll nk = min<ll>(n, nx); ll nd = d + (x + aij); dp[(i + 1) % 2][nj][nk] = fmax(dp[(i + 1) % 2][nj][nk], {nd, nx}, i); } } } rep(j, 3) rep(k, n + 1) dp[i % 2][j][k] = {-linf, -linf}; } ll ans = -linf; rep(j, 3) { rep(k, n + 1) { ans = max(ans, dp[n % 2][j][k].first); } } cout << ans << endl; }