結果

問題 No.2686 商品券の使い道
ユーザー とりゐとりゐ
提出日時 2024-03-20 22:37:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 943 ms / 3,000 ms
コード長 567 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 84,096 KB
最終ジャッジ日時 2024-09-30 08:42:34
合計ジャッジ時間 27,113 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 235 ms
77,952 KB
testcase_03 AC 233 ms
77,824 KB
testcase_04 AC 235 ms
77,696 KB
testcase_05 AC 233 ms
77,568 KB
testcase_06 AC 234 ms
77,824 KB
testcase_07 AC 232 ms
77,824 KB
testcase_08 AC 234 ms
77,824 KB
testcase_09 AC 240 ms
77,696 KB
testcase_10 AC 237 ms
77,696 KB
testcase_11 AC 238 ms
77,824 KB
testcase_12 AC 238 ms
77,824 KB
testcase_13 AC 241 ms
77,952 KB
testcase_14 AC 241 ms
77,568 KB
testcase_15 AC 249 ms
77,696 KB
testcase_16 AC 243 ms
77,824 KB
testcase_17 AC 238 ms
77,568 KB
testcase_18 AC 239 ms
77,696 KB
testcase_19 AC 251 ms
77,824 KB
testcase_20 AC 234 ms
77,824 KB
testcase_21 AC 237 ms
77,952 KB
testcase_22 AC 251 ms
77,696 KB
testcase_23 AC 243 ms
77,696 KB
testcase_24 AC 242 ms
77,824 KB
testcase_25 AC 238 ms
77,824 KB
testcase_26 AC 249 ms
77,696 KB
testcase_27 AC 236 ms
77,952 KB
testcase_28 AC 233 ms
77,824 KB
testcase_29 AC 943 ms
83,968 KB
testcase_30 AC 928 ms
83,840 KB
testcase_31 AC 911 ms
83,968 KB
testcase_32 AC 920 ms
83,968 KB
testcase_33 AC 907 ms
83,840 KB
testcase_34 AC 913 ms
84,096 KB
testcase_35 AC 937 ms
83,968 KB
testcase_36 AC 936 ms
84,096 KB
testcase_37 AC 932 ms
84,096 KB
testcase_38 AC 917 ms
83,968 KB
testcase_39 AC 922 ms
83,968 KB
testcase_40 AC 936 ms
83,840 KB
testcase_41 AC 943 ms
83,968 KB
testcase_42 AC 892 ms
83,840 KB
testcase_43 AC 906 ms
83,840 KB
testcase_44 AC 888 ms
83,840 KB
testcase_45 AC 892 ms
84,096 KB
testcase_46 AC 881 ms
83,968 KB
evil_random20_1.txt AC 873 ms
83,840 KB
evil_random20_2.txt AC 848 ms
83,968 KB
evil_random20_3.txt AC 836 ms
83,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,q=map(int,input().split())
ab=[]
for i in range(n):
  a,b=map(int,input().split())
  ab.append([a,b])

dp=[0]*(1<<n)
for bit in range(1<<n):
  cost=0
  val=0
  for i in range(n):
    if (bit>>i)&1:
      cost+=ab[i][0]
      val+=ab[i][1]
  if cost<=m:
    dp[bit]=val
  for i in range(n):
    if (bit>>i)&1==0:
      dp[bit|(1<<i)]=max(dp[bit|(1<<i)],dp[bit])

mask=(1<<n)-1
ans=0
for bit in range(1<<n):
  cost=0
  val=0
  for i in range(n):
    if (bit>>i)&1:
      cost+=ab[i][0]
      val+=ab[i][1]
  if cost<=q:
    ans=max(ans,val+dp[bit^mask])

print(ans)
0