結果

問題 No.2693 Sword
ユーザー Meso MesoMeso Meso
提出日時 2024-08-18 09:57:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 516 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-08-18 09:57:22
合計ジャッジ時間 7,993 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 697 ms
23,936 KB
testcase_10 AC 65 ms
11,520 KB
testcase_11 AC 303 ms
17,408 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 76 ms
11,392 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 366 ms
14,208 KB
testcase_20 AC 61 ms
10,880 KB
testcase_21 AC 87 ms
11,136 KB
testcase_22 AC 423 ms
14,336 KB
testcase_23 AC 76 ms
11,136 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 WA -
testcase_26 AC 30 ms
10,752 KB
testcase_27 WA -
testcase_28 AC 32 ms
10,624 KB
testcase_29 AC 32 ms
10,752 KB
testcase_30 AC 30 ms
10,624 KB
testcase_31 AC 31 ms
10,752 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p, k = map(int, input().split())

m = float("inf")
dp = [[0 for _ in range(k + 1)] for _ in range(n + 1)]
dp[0][0] = p

for i in range(n):
    t, b = map(int, input().split())
    for j in range(k + 1):
        dp[i + 1][j] = max(dp[i + 1][j], dp[i][j])
        if j != k:
            if t == 1:
                dp[i + 1][j + 1] = min(max(dp[i + 1][j + 1], dp[i][j] + b), m)
            else:
                dp[i + 1][j + 1] = min(max(dp[i + 1][j + 1], dp[i][j] * 2), m)

print([max(dp[n]), -1][max(dp[n]) == m])
0