結果

問題 No.2686 商品券の使い道
ユーザー PNJPNJ
提出日時 2024-03-20 22:30:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 998 ms / 3,000 ms
コード長 631 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 84,348 KB
最終ジャッジ日時 2024-09-30 08:30:33
合計ジャッジ時間 27,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,984 KB
testcase_01 AC 35 ms
52,592 KB
testcase_02 AC 198 ms
78,208 KB
testcase_03 AC 205 ms
78,168 KB
testcase_04 AC 208 ms
77,880 KB
testcase_05 AC 198 ms
77,968 KB
testcase_06 AC 194 ms
77,864 KB
testcase_07 AC 193 ms
78,144 KB
testcase_08 AC 191 ms
78,156 KB
testcase_09 AC 197 ms
78,220 KB
testcase_10 AC 198 ms
78,064 KB
testcase_11 AC 194 ms
77,952 KB
testcase_12 AC 200 ms
78,504 KB
testcase_13 AC 201 ms
78,028 KB
testcase_14 AC 198 ms
78,208 KB
testcase_15 AC 197 ms
78,340 KB
testcase_16 AC 201 ms
78,336 KB
testcase_17 AC 196 ms
78,376 KB
testcase_18 AC 198 ms
78,088 KB
testcase_19 AC 198 ms
78,176 KB
testcase_20 AC 191 ms
77,984 KB
testcase_21 AC 193 ms
78,152 KB
testcase_22 AC 208 ms
78,204 KB
testcase_23 AC 199 ms
78,156 KB
testcase_24 AC 201 ms
78,248 KB
testcase_25 AC 214 ms
78,152 KB
testcase_26 AC 197 ms
78,164 KB
testcase_27 AC 198 ms
78,228 KB
testcase_28 AC 197 ms
78,120 KB
testcase_29 AC 985 ms
84,012 KB
testcase_30 AC 956 ms
84,208 KB
testcase_31 AC 976 ms
84,044 KB
testcase_32 AC 979 ms
84,144 KB
testcase_33 AC 965 ms
84,132 KB
testcase_34 AC 980 ms
84,212 KB
testcase_35 AC 959 ms
84,036 KB
testcase_36 AC 994 ms
84,196 KB
testcase_37 AC 988 ms
83,916 KB
testcase_38 AC 975 ms
83,980 KB
testcase_39 AC 998 ms
84,344 KB
testcase_40 AC 984 ms
83,908 KB
testcase_41 AC 991 ms
83,904 KB
testcase_42 AC 990 ms
84,288 KB
testcase_43 AC 985 ms
84,348 KB
testcase_44 AC 988 ms
84,312 KB
testcase_45 AC 975 ms
84,060 KB
testcase_46 AC 984 ms
83,856 KB
evil_random20_1.txt AC 978 ms
84,220 KB
evil_random20_2.txt AC 986 ms
84,172 KB
evil_random20_3.txt AC 990 ms
84,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Map():
  return list(map(int,input().split()))

N,M,Q = Map()
A,B = [0]*N,[0]*N
for i in range(N):
  A[i],B[i] = Map()

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

for j in range(1 << N):
  a,b = 0,0
  for i in range(N):
    if (j >> i) & 1:
      a += A[i]
      b += B[i]
  if a <= M:
    dp[j] = b

for j in range(1 << N):
  for i in range(N):
    if (j >> i) & 1:
      k = j ^ (1 << i)
      dp[j] = max(dp[j],dp[k])

ans = 0
mask = (1 << N) - 1
for j in range(1 << N):
  a,b = 0,0
  for i in range(N):
    if (j >> i) & 1:
      a += A[i]
      b += B[i]
  if a > Q:
    continue
  k = j ^ mask
  ans = max(ans,b + dp[k])
print(ans)
0