結果

問題 No.37 遊園地のアトラクション
ユーザー qibqib
提出日時 2023-02-09 00:20:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 76,016 KB
最終ジャッジ日時 2024-07-06 08:45:34
合計ジャッジ時間 2,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 33 ms
52,352 KB
testcase_02 AC 62 ms
69,888 KB
testcase_03 AC 52 ms
64,896 KB
testcase_04 AC 60 ms
68,480 KB
testcase_05 AC 71 ms
71,168 KB
testcase_06 AC 41 ms
60,288 KB
testcase_07 AC 72 ms
73,216 KB
testcase_08 AC 34 ms
52,352 KB
testcase_09 AC 32 ms
51,840 KB
testcase_10 AC 77 ms
76,016 KB
testcase_11 AC 60 ms
68,352 KB
testcase_12 AC 50 ms
64,128 KB
testcase_13 AC 51 ms
64,512 KB
testcase_14 AC 33 ms
52,480 KB
testcase_15 AC 61 ms
69,120 KB
testcase_16 AC 53 ms
65,920 KB
testcase_17 AC 50 ms
63,744 KB
testcase_18 AC 70 ms
73,856 KB
testcase_19 AC 33 ms
51,968 KB
testcase_20 AC 60 ms
68,608 KB
testcase_21 AC 33 ms
51,584 KB
testcase_22 AC 43 ms
61,312 KB
testcase_23 AC 32 ms
52,096 KB
testcase_24 AC 32 ms
51,968 KB
testcase_25 AC 31 ms
51,712 KB
testcase_26 AC 32 ms
52,480 KB
testcase_27 AC 59 ms
69,248 KB
testcase_28 AC 32 ms
52,096 KB
testcase_29 AC 60 ms
69,248 KB
testcase_30 AC 32 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
n = int(input())
c = list(map(int, input().split()))
v = list(map(int, input().split()))

dp = {}
dp[0] = 0
for i in range(n):
  cost = c[i]
  value = 0
  cur = v[i]
  ndp = {}
  while cur > 0:
    value += cur
    for ck, cv in dp.items():
      ndp[ck] = max(ndp.get(ck, -1), cv)
      if ck + cost <= t:
        nxt = ck + cost
        ndp[nxt] = max(ndp.get(nxt, -1), cv + value)

    cost += c[i]
    cur //= 2

  dp = ndp

print(max(dp.values()))
0