結果

問題 No.2982 Logic Battle
ユーザー noriocnorioc
提出日時 2024-12-07 03:38:25
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 687 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 801,376 KB
最終ジャッジ日時 2024-12-07 03:39:32
合計ジャッジ時間 65,079 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,728 KB
testcase_01 MLE -
testcase_02 AC 40 ms
57,344 KB
testcase_03 MLE -
testcase_04 AC 39 ms
57,984 KB
testcase_05 MLE -
testcase_06 AC 43 ms
64,384 KB
testcase_07 MLE -
testcase_08 AC 39 ms
57,856 KB
testcase_09 MLE -
testcase_10 TLE -
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 MLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 TLE -
testcase_19 MLE -
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 AC 88 ms
77,296 KB
testcase_31 AC 35 ms
52,096 KB
testcase_32 AC 84 ms
77,312 KB
testcase_33 AC 467 ms
86,656 KB
testcase_34 AC 423 ms
86,016 KB
testcase_35 AC 484 ms
86,460 KB
testcase_36 AC 409 ms
86,096 KB
testcase_37 AC 444 ms
173,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

N = int(input())
cards = []
for _ in range(N):
    A, B, C = map(int, input().split())
    cards.append((A, B, C))

dp = [(-1, 0, 0)]
for i in range(N):
    pp = []
    dp, pp = pp, dp
    ds = [{}, {}, {}]
    for prev_j, x, tot in pp:
        for j in range(3):
            if prev_j == j: continue
            nx = x + cards[i][j]
            ntot = tot + nx
            # dp.append((j, max(0, nx-1), ntot))

            d = ds[j]
            d[nx] = max(d.get(nx, -1), ntot)

    for j in range(3):
        d = ds[j]
        for nx, ntot in d.items():
            dp.append((j, max(0, nx-1), ntot))

ans = max(tot for _, _, tot in dp)
print(ans)
0