結果

問題 No.2693 Sword
ユーザー mymelochanmymelochan
提出日時 2024-03-22 21:31:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 74,676 KB
最終ジャッジ日時 2024-09-30 10:56:10
合計ジャッジ時間 2,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,516 KB
testcase_01 AC 43 ms
55,244 KB
testcase_02 AC 43 ms
55,528 KB
testcase_03 AC 42 ms
56,092 KB
testcase_04 AC 42 ms
55,116 KB
testcase_05 AC 41 ms
54,844 KB
testcase_06 AC 41 ms
54,248 KB
testcase_07 AC 41 ms
55,316 KB
testcase_08 AC 41 ms
55,252 KB
testcase_09 AC 65 ms
74,676 KB
testcase_10 AC 51 ms
62,940 KB
testcase_11 AC 57 ms
67,920 KB
testcase_12 AC 44 ms
56,176 KB
testcase_13 AC 59 ms
66,144 KB
testcase_14 AC 46 ms
55,384 KB
testcase_15 AC 58 ms
66,416 KB
testcase_16 AC 59 ms
68,740 KB
testcase_17 AC 50 ms
63,040 KB
testcase_18 AC 48 ms
63,624 KB
testcase_19 AC 63 ms
72,640 KB
testcase_20 AC 55 ms
67,644 KB
testcase_21 AC 59 ms
69,860 KB
testcase_22 AC 68 ms
74,524 KB
testcase_23 AC 56 ms
67,580 KB
testcase_24 AC 44 ms
56,280 KB
testcase_25 AC 42 ms
55,380 KB
testcase_26 AC 44 ms
55,648 KB
testcase_27 AC 43 ms
55,052 KB
testcase_28 AC 44 ms
55,876 KB
testcase_29 AC 44 ms
55,500 KB
testcase_30 AC 45 ms
54,384 KB
testcase_31 AC 45 ms
55,752 KB
testcase_32 AC 51 ms
63,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
#############################################################

N,P,K = lmin()
L = [lmin() for _ in range(N)]

dp = [-1]*(K+1)
dp[0] = P

for t,b in L:
    ndp = dp[:]
    for j in range(K):
        if dp[j] == -1:
            break
        if t == 1:
            ndp[j+1] = max(ndp[j+1],dp[j]+b)
        else:
            ndp[j+1] = max(ndp[j+1],dp[j]*2)
    dp = ndp
    if max(dp) > 10**18:
        print(-1)
        exit()

print(max(dp))
        
0