結果

問題 No.2693 Sword
ユーザー FromBooskaFromBooska
提出日時 2024-03-22 23:16:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 71,132 KB
最終ジャッジ日時 2024-09-30 12:31:10
合計ジャッジ時間 2,706 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,620 KB
testcase_01 AC 33 ms
52,608 KB
testcase_02 AC 31 ms
53,084 KB
testcase_03 AC 32 ms
52,064 KB
testcase_04 AC 33 ms
53,536 KB
testcase_05 AC 31 ms
52,900 KB
testcase_06 AC 32 ms
52,492 KB
testcase_07 AC 33 ms
52,748 KB
testcase_08 AC 33 ms
53,240 KB
testcase_09 AC 63 ms
69,780 KB
testcase_10 AC 46 ms
62,132 KB
testcase_11 AC 55 ms
68,104 KB
testcase_12 AC 34 ms
52,556 KB
testcase_13 AC 47 ms
64,608 KB
testcase_14 AC 34 ms
52,748 KB
testcase_15 AC 53 ms
67,032 KB
testcase_16 AC 60 ms
70,580 KB
testcase_17 AC 51 ms
67,136 KB
testcase_18 AC 45 ms
63,100 KB
testcase_19 AC 58 ms
69,968 KB
testcase_20 AC 53 ms
68,352 KB
testcase_21 AC 61 ms
71,128 KB
testcase_22 AC 62 ms
71,056 KB
testcase_23 AC 58 ms
69,084 KB
testcase_24 AC 33 ms
52,884 KB
testcase_25 AC 33 ms
52,408 KB
testcase_26 AC 32 ms
53,024 KB
testcase_27 AC 35 ms
53,040 KB
testcase_28 AC 33 ms
52,356 KB
testcase_29 AC 34 ms
52,696 KB
testcase_30 AC 33 ms
53,552 KB
testcase_31 AC 32 ms
53,236 KB
testcase_32 AC 49 ms
71,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 2次元dp、dp[i番目まで見て][j個使ったときの]最高値

N, P, K = map(int, input().split())
TB = []
for i in range(N):
    t, b = map(int, input().split())
    TB.append((t, b))

dp = [[0]*(K+1) for i in range(N+1)]
dp[0][0] = P

for i in range(1, N+1):
    t, b = TB[i-1]
    # 使わない
    for j in range(K+1):
        dp[i][j] = max(dp[i][j], dp[i-1][j])
    # 使う
    for j in range(K+1):
        if t == 1:
            if j+1<=K:
                dp[i][j+1] = max(dp[i][j+1], dp[i-1][j]+b)
                if dp[i][j+1] > 10**18:
                    print(-1)
                    exit()
        elif t == 2:
            if j+1<=K:
                dp[i][j+1] = max(dp[i][j+1], dp[i-1][j]*2)
                if dp[i][j+1] > 10**18:
                    print(-1)
                    exit()
    #print(dp[i])
    
ans = dp[N][K]
print(ans)
0