結果

問題 No.37 遊園地のアトラクション
ユーザー H3PO4H3PO4
提出日時 2023-03-15 13:00:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 928 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-09-18 08:42:22
合計ジャッジ時間 7,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 145 ms
10,880 KB
testcase_03 AC 212 ms
11,136 KB
testcase_04 AC 85 ms
10,752 KB
testcase_05 AC 140 ms
10,752 KB
testcase_06 AC 127 ms
11,136 KB
testcase_07 AC 643 ms
11,264 KB
testcase_08 AC 83 ms
11,008 KB
testcase_09 AC 42 ms
10,752 KB
testcase_10 AC 533 ms
11,136 KB
testcase_11 AC 508 ms
11,392 KB
testcase_12 AC 148 ms
10,880 KB
testcase_13 AC 189 ms
11,008 KB
testcase_14 AC 101 ms
11,136 KB
testcase_15 AC 103 ms
10,624 KB
testcase_16 AC 290 ms
11,264 KB
testcase_17 AC 247 ms
11,264 KB
testcase_18 AC 615 ms
11,264 KB
testcase_19 AC 40 ms
10,880 KB
testcase_20 AC 210 ms
10,880 KB
testcase_21 AC 100 ms
11,264 KB
testcase_22 AC 928 ms
11,520 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 24 ms
10,624 KB
testcase_25 AC 25 ms
10,624 KB
testcase_26 AC 25 ms
10,624 KB
testcase_27 AC 122 ms
10,880 KB
testcase_28 AC 26 ms
10,624 KB
testcase_29 AC 76 ms
10,752 KB
testcase_30 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
N = int(input())
C = tuple(map(int, input().split()))
V = tuple(map(int, input().split()))

dp = [0] * (T + 1)
for c, v in zip(C, V):
    new_dp = dp.copy()
    u = 0
    for n in range(v.bit_length()):
        u += v >> n
        if T < c * (n + 1) - 1:
            break
        for i in range(T - c * (n + 1) + 1):
            new_dp[i + c * (n + 1)] = max(new_dp[i + c * (n + 1)], dp[i] + u)
    dp = new_dp
print(max(dp))
0