結果

問題 No.2982 Logic Battle
ユーザー noriocnorioc
提出日時 2024-12-07 03:46:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 780 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 78,160 KB
最終ジャッジ日時 2024-12-07 03:47:03
合計ジャッジ時間 5,033 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 38 ms
53,120 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 37 ms
52,736 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 107 ms
77,340 KB
testcase_11 AC 110 ms
77,312 KB
testcase_12 AC 109 ms
77,296 KB
testcase_13 AC 104 ms
77,312 KB
testcase_14 AC 149 ms
78,160 KB
testcase_15 AC 87 ms
76,632 KB
testcase_16 AC 104 ms
77,312 KB
testcase_17 AC 100 ms
77,056 KB
testcase_18 AC 108 ms
77,440 KB
testcase_19 AC 96 ms
77,056 KB
testcase_20 AC 109 ms
77,884 KB
testcase_21 AC 109 ms
77,504 KB
testcase_22 AC 111 ms
77,440 KB
testcase_23 AC 105 ms
77,664 KB
testcase_24 AC 110 ms
77,856 KB
testcase_25 AC 131 ms
77,552 KB
testcase_26 AC 107 ms
77,440 KB
testcase_27 AC 110 ms
77,620 KB
testcase_28 AC 117 ms
77,596 KB
testcase_29 AC 109 ms
77,440 KB
testcase_30 AC 100 ms
77,568 KB
testcase_31 AC 39 ms
52,608 KB
testcase_32 AC 95 ms
77,568 KB
testcase_33 AC 107 ms
77,872 KB
testcase_34 AC 107 ms
77,944 KB
testcase_35 AC 108 ms
77,892 KB
testcase_36 AC 134 ms
77,888 KB
testcase_37 AC 104 ms
77,912 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]
        v = -1
        for nx, ntot in sorted(d.items(), reverse=True):
            if v >= ntot: continue
            v = ntot
            dp.append((j, max(0, nx-1), ntot))

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