結果

問題 No.2693 Sword
ユーザー june19312june19312
提出日時 2024-03-22 22:12:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 1,730 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,672 KB
最終ジャッジ日時 2024-09-30 11:41:53
合計ジャッジ時間 2,840 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 33 ms
52,480 KB
testcase_02 AC 33 ms
52,352 KB
testcase_03 AC 33 ms
52,096 KB
testcase_04 AC 33 ms
52,224 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 32 ms
51,712 KB
testcase_07 AC 32 ms
52,352 KB
testcase_08 AC 32 ms
51,712 KB
testcase_09 AC 89 ms
76,288 KB
testcase_10 AC 49 ms
65,920 KB
testcase_11 AC 63 ms
75,648 KB
testcase_12 AC 34 ms
51,712 KB
testcase_13 AC 53 ms
66,816 KB
testcase_14 AC 45 ms
62,592 KB
testcase_15 AC 71 ms
75,904 KB
testcase_16 AC 54 ms
69,504 KB
testcase_17 AC 76 ms
75,776 KB
testcase_18 AC 48 ms
65,152 KB
testcase_19 AC 76 ms
75,860 KB
testcase_20 AC 71 ms
75,028 KB
testcase_21 AC 87 ms
76,624 KB
testcase_22 AC 83 ms
75,648 KB
testcase_23 AC 69 ms
76,544 KB
testcase_24 AC 33 ms
52,352 KB
testcase_25 AC 35 ms
52,352 KB
testcase_26 AC 34 ms
52,004 KB
testcase_27 AC 34 ms
51,712 KB
testcase_28 AC 33 ms
51,584 KB
testcase_29 AC 33 ms
51,968 KB
testcase_30 AC 34 ms
52,096 KB
testcase_31 AC 42 ms
52,352 KB
testcase_32 AC 150 ms
78,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P,K = map(int,input().split())

d1,d2 = {},{}
d1[0] = P

for i in range(N):
    T,B = map(int,input().split())
    
    if len(d1):
        for ind,val in d1.items():
            if ind not in d2:
                d2[ind] = val
            else:
                d2[ind] = max(d2[ind],val)
            
            if T == 1:
                nex = val+B
                if ind+1 <= K:
                    if ind+1 not in d2:
                        d2[ind+1] = nex
                    else:
                        d2[ind+1] = max(d2[ind+1],nex)
            else:
                nex = val*2
                if ind+1 <= K:
                    if ind+1 not in d2:
                        d2[ind+1] = nex
                    else:
                        d2[ind+1] = max(d2[ind+1],nex)
        if K in d2:
            if d2[K] > 10**18:
                print(-1)
                exit()
        d1 = {}
    else:
        for ind,val in d2.items():
            if ind not in d1:
                d1[ind] = val
            else:
                d1[ind] = max(d1[ind],val)
            
            if T == 1:
                nex = val+B
                if ind+1 <= K:
                    if ind+1 not in d1:
                        d1[ind+1] = nex
                    else:
                        d1[ind+1] = max(d1[ind+1],nex)
            else:
                nex = val*2
                if ind+1 <= K:
                    if ind+1 not in d1:
                        d1[ind+1] = nex
                    else:
                        d1[ind+1] = max(d1[ind+1],nex)
        if K in d1:
            if d1[K] > 10**18:
                print(-1)
                exit()
        d2 = {}

if len(d1):
    print(d1[K])
else:
    print(d2[K])

0