結果

問題 No.37 遊園地のアトラクション
ユーザー tnodinotnodino
提出日時 2022-02-16 05:43:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 5,000 ms
コード長 507 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,040 KB
最終ジャッジ日時 2024-06-29 07:12:02
合計ジャッジ時間 3,114 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
64,640 KB
testcase_01 AC 48 ms
61,368 KB
testcase_02 AC 60 ms
65,536 KB
testcase_03 AC 61 ms
66,560 KB
testcase_04 AC 60 ms
65,408 KB
testcase_05 AC 60 ms
65,536 KB
testcase_06 AC 56 ms
64,768 KB
testcase_07 AC 83 ms
72,100 KB
testcase_08 AC 54 ms
63,436 KB
testcase_09 AC 54 ms
63,488 KB
testcase_10 AC 76 ms
70,656 KB
testcase_11 AC 74 ms
70,144 KB
testcase_12 AC 59 ms
64,768 KB
testcase_13 AC 60 ms
65,744 KB
testcase_14 AC 53 ms
63,944 KB
testcase_15 AC 56 ms
65,068 KB
testcase_16 AC 65 ms
67,456 KB
testcase_17 AC 61 ms
66,688 KB
testcase_18 AC 79 ms
72,192 KB
testcase_19 AC 54 ms
63,232 KB
testcase_20 AC 61 ms
66,560 KB
testcase_21 AC 51 ms
63,360 KB
testcase_22 AC 97 ms
87,040 KB
testcase_23 AC 38 ms
51,968 KB
testcase_24 AC 39 ms
52,392 KB
testcase_25 AC 39 ms
51,952 KB
testcase_26 AC 40 ms
52,224 KB
testcase_27 AC 59 ms
65,024 KB
testcase_28 AC 47 ms
61,056 KB
testcase_29 AC 56 ms
64,604 KB
testcase_30 AC 38 ms
52,096 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:
        c.append(c[i])
        v.append(x)
        x //= 2
N = len(v)
DP = [[0] * (T+10) for _ in range(N+10)]
for i in range(N):
    for j in range(T+1):
        DP[i+1][j] = max(DP[i][j], DP[i+1][j])
        DP[i][j+1] = max(DP[i][j], DP[i][j+1])
        if j - c[i] >= 0:
            DP[i+1][j] = max(DP[i][j-c[i]] + v[i], DP[i+1][j])
print(DP[N][T])
0