結果

問題 No.2686 商品券の使い道
ユーザー titiatitia
提出日時 2024-03-27 01:57:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 641 ms / 3,000 ms
コード長 698 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 92,672 KB
最終ジャッジ日時 2024-09-30 14:29:39
合計ジャッジ時間 18,034 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 152 ms
80,128 KB
testcase_03 AC 151 ms
80,256 KB
testcase_04 AC 155 ms
80,384 KB
testcase_05 AC 148 ms
80,128 KB
testcase_06 AC 155 ms
80,128 KB
testcase_07 AC 155 ms
79,616 KB
testcase_08 AC 153 ms
80,128 KB
testcase_09 AC 152 ms
80,256 KB
testcase_10 AC 154 ms
80,256 KB
testcase_11 AC 148 ms
80,128 KB
testcase_12 AC 152 ms
80,000 KB
testcase_13 AC 143 ms
80,116 KB
testcase_14 AC 150 ms
80,232 KB
testcase_15 AC 155 ms
80,128 KB
testcase_16 AC 151 ms
80,000 KB
testcase_17 AC 154 ms
80,172 KB
testcase_18 AC 150 ms
80,128 KB
testcase_19 AC 153 ms
80,256 KB
testcase_20 AC 143 ms
79,616 KB
testcase_21 AC 146 ms
80,000 KB
testcase_22 AC 148 ms
80,128 KB
testcase_23 AC 150 ms
80,256 KB
testcase_24 AC 148 ms
80,128 KB
testcase_25 AC 168 ms
80,128 KB
testcase_26 AC 166 ms
80,292 KB
testcase_27 AC 157 ms
79,872 KB
testcase_28 AC 153 ms
79,872 KB
testcase_29 AC 604 ms
92,416 KB
testcase_30 AC 565 ms
92,160 KB
testcase_31 AC 599 ms
92,288 KB
testcase_32 AC 596 ms
92,416 KB
testcase_33 AC 641 ms
92,160 KB
testcase_34 AC 590 ms
92,160 KB
testcase_35 AC 630 ms
92,288 KB
testcase_36 AC 556 ms
92,416 KB
testcase_37 AC 559 ms
92,672 KB
testcase_38 AC 541 ms
92,288 KB
testcase_39 AC 545 ms
92,416 KB
testcase_40 AC 578 ms
92,288 KB
testcase_41 AC 549 ms
92,416 KB
testcase_42 AC 577 ms
92,416 KB
testcase_43 AC 556 ms
92,160 KB
testcase_44 AC 555 ms
92,416 KB
testcase_45 AC 573 ms
92,288 KB
testcase_46 AC 557 ms
92,416 KB
evil_random20_1.txt AC 566 ms
92,288 KB
evil_random20_2.txt AC 598 ms
92,288 KB
evil_random20_3.txt AC 591 ms
92,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from operator import itemgetter

N,M,Q=map(int,input().split())

AB=[list(map(int,input().split())) for i in range(N)]

DP=[0 for i in range(1<<N)]
DP2=[0 for i in range(1<<N)]

for i in range(1<<N):
    c=0
    v=0
    for j in range(N):
        if i & (1<<j) != 0:
            c+=AB[j][0]
            v+=AB[j][1]

    if c<=M:
        DP[i]=v
    if c<=Q:
        DP2[i]=v

#print(DP)
#print(DP2)

for i in range(N):
    for j in range(1<<N):
        if j & (1<<i) != 0:
            DP[j]=max(DP[j],DP[j^(1<<i)])
            DP2[j]=max(DP2[j],DP2[j^(1<<i)])
                
ANS=0

for i in range(1<<N):
    ANS=max(ANS,DP[i]+DP2[((1<<N)-1)^i])

print(ANS)
0