結果

問題 No.37 遊園地のアトラクション
ユーザー dangodango
提出日時 2023-07-09 15:58:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 5,000 ms
コード長 516 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 86,396 KB
最終ジャッジ日時 2024-07-23 13:05:41
合計ジャッジ時間 3,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
70,844 KB
testcase_01 AC 56 ms
64,788 KB
testcase_02 AC 69 ms
71,208 KB
testcase_03 AC 65 ms
71,404 KB
testcase_04 AC 68 ms
72,248 KB
testcase_05 AC 72 ms
74,624 KB
testcase_06 AC 60 ms
68,320 KB
testcase_07 AC 101 ms
83,836 KB
testcase_08 AC 58 ms
67,528 KB
testcase_09 AC 49 ms
62,136 KB
testcase_10 AC 94 ms
81,968 KB
testcase_11 AC 90 ms
81,700 KB
testcase_12 AC 61 ms
68,920 KB
testcase_13 AC 61 ms
70,524 KB
testcase_14 AC 55 ms
67,600 KB
testcase_15 AC 70 ms
72,776 KB
testcase_16 AC 82 ms
79,384 KB
testcase_17 AC 68 ms
72,948 KB
testcase_18 AC 100 ms
83,344 KB
testcase_19 AC 49 ms
62,512 KB
testcase_20 AC 68 ms
73,604 KB
testcase_21 AC 50 ms
65,032 KB
testcase_22 AC 99 ms
86,396 KB
testcase_23 AC 36 ms
53,112 KB
testcase_24 AC 36 ms
52,700 KB
testcase_25 AC 35 ms
53,636 KB
testcase_26 AC 37 ms
53,660 KB
testcase_27 AC 68 ms
73,060 KB
testcase_28 AC 45 ms
60,928 KB
testcase_29 AC 67 ms
72,852 KB
testcase_30 AC 37 ms
52,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
n = int(input())
c = list(map(int, input().split()))
v = list(map(int, input().split()))
for i in range(n):
    x = v[i] // 2
    while x > 0:
        c.append(c[i])
        v.append(x)
        x //= 2
m = len(c)
dp = [[-float('inf')] * (t + 1) for _ in range(m + 1)]
dp[0][0] = 0
for i in range(m):
    for j in range(t + 1):
        dp[i + 1][j] = max(dp[i + 1][j], dp[i][j])
        if j + c[i] <= t:
            dp[i + 1][j + c[i]] = max(dp[i + 1][j + c[i]], dp[i][j] + v[i])
print(max(dp[-1]))
0