結果

問題 No.37 遊園地のアトラクション
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-09 03:33:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 5,000 ms
コード長 651 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 77,804 KB
最終ジャッジ日時 2024-06-10 02:52:11
合計ジャッジ時間 3,580 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
73,060 KB
testcase_01 AC 59 ms
68,820 KB
testcase_02 AC 82 ms
77,240 KB
testcase_03 AC 84 ms
77,300 KB
testcase_04 AC 81 ms
77,204 KB
testcase_05 AC 83 ms
76,956 KB
testcase_06 AC 69 ms
73,872 KB
testcase_07 AC 92 ms
77,596 KB
testcase_08 AC 77 ms
76,820 KB
testcase_09 AC 56 ms
68,644 KB
testcase_10 AC 85 ms
77,804 KB
testcase_11 AC 86 ms
77,372 KB
testcase_12 AC 73 ms
75,312 KB
testcase_13 AC 81 ms
77,208 KB
testcase_14 AC 77 ms
77,196 KB
testcase_15 AC 80 ms
77,296 KB
testcase_16 AC 84 ms
77,640 KB
testcase_17 AC 84 ms
77,332 KB
testcase_18 AC 91 ms
77,376 KB
testcase_19 AC 56 ms
68,652 KB
testcase_20 AC 81 ms
77,016 KB
testcase_21 AC 75 ms
74,456 KB
testcase_22 AC 86 ms
73,924 KB
testcase_23 AC 45 ms
56,728 KB
testcase_24 AC 46 ms
56,668 KB
testcase_25 AC 42 ms
56,200 KB
testcase_26 AC 43 ms
56,504 KB
testcase_27 AC 90 ms
77,296 KB
testcase_28 AC 49 ms
65,240 KB
testcase_29 AC 76 ms
76,944 KB
testcase_30 AC 47 ms
55,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

T = int(input())
N = int(input())
C = list(map(int,input().split()))
V = list(map(int,input().split()))
dp = [[0]*(T+2) for _ in range(N+1)]
for i in range(N):
    v = V[i]
    c = C[i]
    
    for j in range(T+1):
        dp[i+1][j] = max(dp[i][j],dp[i+1][j])
        tv = v
        sv = tv
        tj = j
        while tv:
            dp[i+1][min(tj+c,T+1)] = max(dp[i+1][min(tj+c,T+1)], dp[i][min(j,T+1)] + sv)
            tv //= 2
            sv += tv
            tj += c

ans = max(dp[-1][:T+1])

print(ans)
0