結果

問題 No.37 遊園地のアトラクション
ユーザー Mao-betaMao-beta
提出日時 2024-03-01 01:22:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 5,000 ms
コード長 1,068 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 86,372 KB
最終ジャッジ日時 2024-03-01 01:22:46
合計ジャッジ時間 4,424 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
66,000 KB
testcase_01 AC 56 ms
65,764 KB
testcase_02 AC 63 ms
68,084 KB
testcase_03 AC 64 ms
68,064 KB
testcase_04 AC 62 ms
67,836 KB
testcase_05 AC 64 ms
68,084 KB
testcase_06 AC 59 ms
65,992 KB
testcase_07 AC 76 ms
73,160 KB
testcase_08 AC 60 ms
66,012 KB
testcase_09 AC 57 ms
66,028 KB
testcase_10 AC 71 ms
72,304 KB
testcase_11 AC 69 ms
72,304 KB
testcase_12 AC 62 ms
68,088 KB
testcase_13 AC 62 ms
68,068 KB
testcase_14 AC 58 ms
66,012 KB
testcase_15 AC 63 ms
68,084 KB
testcase_16 AC 66 ms
70,268 KB
testcase_17 AC 65 ms
68,060 KB
testcase_18 AC 74 ms
72,524 KB
testcase_19 AC 55 ms
66,020 KB
testcase_20 AC 64 ms
68,060 KB
testcase_21 AC 58 ms
66,012 KB
testcase_22 AC 92 ms
86,372 KB
testcase_23 AC 48 ms
55,624 KB
testcase_24 AC 46 ms
55,624 KB
testcase_25 AC 47 ms
55,624 KB
testcase_26 AC 50 ms
57,700 KB
testcase_27 AC 70 ms
68,084 KB
testcase_28 AC 55 ms
64,052 KB
testcase_29 AC 60 ms
68,100 KB
testcase_30 AC 49 ms
57,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    T = NI()
    N = NI()
    C = NLI()
    V = NLI()
    CV = []
    for c, v in zip(C, V):
        while v > 0:
            CV.append([c, v])
            v //= 2
    N = len(CV)
    dp = [[0]*(T+1) for _ in range(N+1)]
    for i in range(N):
        c, v = CV[i]
        for j in range(T+1):
            dp[i+1][j] = max(dp[i+1][j], dp[i][j])
            if j+c <= T:
                dp[i+1][j+c] = max(dp[i+1][j+c], dp[i][j]+v)
    print(max(dp[-1]))


if __name__ == "__main__":
    main()
0