結果

問題 No.2982 Logic Battle
ユーザー noriocnorioc
提出日時 2024-12-07 02:39:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 805 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 96,808 KB
最終ジャッジ日時 2024-12-07 02:40:17
合計ジャッジ時間 64,592 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,876 KB
testcase_01 AC 97 ms
76,476 KB
testcase_02 AC 39 ms
54,272 KB
testcase_03 AC 72 ms
73,488 KB
testcase_04 AC 88 ms
76,712 KB
testcase_05 AC 75 ms
74,496 KB
testcase_06 AC 100 ms
76,196 KB
testcase_07 AC 39 ms
52,608 KB
testcase_08 AC 38 ms
52,992 KB
testcase_09 AC 44 ms
58,368 KB
testcase_10 TLE -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 TLE -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 TLE -
testcase_19 WA -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 40 ms
52,224 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
権限があれば一括ダウンロードができます

ソースコード

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
    q1 = []
    q2 = []
    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))
            heappush(q1, (max(0, nx-1), ntot, j))
            heappush(q2, (ntot, max(0, nx-1), j))

            if len(q1) > 100: heappop(q1)
            if len(q2) > 100: heappop(q2)

    for nx, ntot, j in q1:
        dp.append((j, nx, ntot))

    for ntot, nx, j in q2:
        dp.append((j, nx, ntot))


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