結果

問題 No.37 遊園地のアトラクション
ユーザー ああいいああいい
提出日時 2021-12-29 20:36:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 71,108 KB
最終ジャッジ日時 2024-10-04 10:55:47
合計ジャッジ時間 3,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
67,968 KB
testcase_01 AC 45 ms
61,100 KB
testcase_02 AC 62 ms
68,320 KB
testcase_03 AC 66 ms
68,624 KB
testcase_04 AC 59 ms
68,412 KB
testcase_05 AC 60 ms
69,388 KB
testcase_06 AC 60 ms
69,100 KB
testcase_07 AC 81 ms
69,184 KB
testcase_08 AC 59 ms
66,784 KB
testcase_09 AC 48 ms
62,564 KB
testcase_10 AC 70 ms
70,420 KB
testcase_11 AC 71 ms
70,224 KB
testcase_12 AC 63 ms
69,252 KB
testcase_13 AC 61 ms
68,284 KB
testcase_14 AC 57 ms
67,672 KB
testcase_15 AC 61 ms
71,108 KB
testcase_16 AC 67 ms
70,272 KB
testcase_17 AC 66 ms
70,168 KB
testcase_18 AC 71 ms
68,624 KB
testcase_19 AC 43 ms
62,056 KB
testcase_20 AC 65 ms
68,860 KB
testcase_21 AC 57 ms
67,472 KB
testcase_22 AC 74 ms
67,232 KB
testcase_23 AC 38 ms
52,268 KB
testcase_24 AC 37 ms
52,548 KB
testcase_25 AC 36 ms
53,620 KB
testcase_26 AC 37 ms
52,392 KB
testcase_27 AC 62 ms
69,516 KB
testcase_28 AC 37 ms
52,944 KB
testcase_29 AC 60 ms
68,784 KB
testcase_30 AC 36 ms
52,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
N = int(input())
c = list(map(int,input().split()))
v = list(map(int,input().split()))

dp = [[0] * (T+1) for _ in range(N+1)]
for i in range(N):
    for j in range(T + 1):
        if dp[i][j] > dp[i+1][j]:
            dp[i+1][j] = dp[i][j]
        value = v[i]
        now = 0
        cost = c[i]
        k = 1
        while j + cost * k <= T and value > 0:
            now += value
            dp[i+1][j+cost * k] = max(dp[i+1][j+cost * k],dp[i][j] + now)
            value = value // 2
            k += 1
print(max(dp[N]))

            
0