結果

問題 No.2693 Sword
ユーザー Meso MesoMeso Meso
提出日時 2024-08-18 10:01:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,874 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,808 KB
最終ジャッジ日時 2024-08-18 10:01:15
合計ジャッジ時間 7,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 701 ms
23,808 KB
testcase_10 AC 66 ms
11,520 KB
testcase_11 AC 308 ms
17,536 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 78 ms
11,520 KB
testcase_14 AC 47 ms
11,008 KB
testcase_15 AC 367 ms
14,976 KB
testcase_16 AC 358 ms
13,696 KB
testcase_17 AC 575 ms
15,872 KB
testcase_18 AC 135 ms
11,520 KB
testcase_19 AC 364 ms
14,208 KB
testcase_20 AC 64 ms
11,008 KB
testcase_21 AC 88 ms
11,008 KB
testcase_22 AC 419 ms
14,464 KB
testcase_23 AC 80 ms
11,008 KB
testcase_24 AC 32 ms
10,752 KB
testcase_25 AC 31 ms
10,752 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 32 ms
10,624 KB
testcase_30 AC 32 ms
10,752 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 1,874 ms
19,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

m = 10 ** 18 + 1
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