結果

問題 No.37 遊園地のアトラクション
ユーザー Mao-betaMao-beta
提出日時 2024-03-01 01:22:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 1,068 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 86,608 KB
最終ジャッジ日時 2024-09-29 13:04:28
合計ジャッジ時間 3,170 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
68,028 KB
testcase_01 AC 57 ms
65,984 KB
testcase_02 AC 59 ms
66,972 KB
testcase_03 AC 61 ms
68,816 KB
testcase_04 AC 60 ms
67,848 KB
testcase_05 AC 60 ms
68,004 KB
testcase_06 AC 58 ms
66,284 KB
testcase_07 AC 73 ms
73,716 KB
testcase_08 AC 57 ms
66,348 KB
testcase_09 AC 54 ms
65,784 KB
testcase_10 AC 67 ms
72,120 KB
testcase_11 AC 66 ms
71,808 KB
testcase_12 AC 58 ms
67,092 KB
testcase_13 AC 59 ms
68,040 KB
testcase_14 AC 57 ms
66,844 KB
testcase_15 AC 60 ms
68,192 KB
testcase_16 AC 64 ms
69,592 KB
testcase_17 AC 61 ms
69,100 KB
testcase_18 AC 72 ms
73,608 KB
testcase_19 AC 54 ms
66,772 KB
testcase_20 AC 59 ms
68,072 KB
testcase_21 AC 58 ms
66,876 KB
testcase_22 AC 88 ms
86,608 KB
testcase_23 AC 45 ms
57,020 KB
testcase_24 AC 44 ms
56,532 KB
testcase_25 AC 45 ms
55,908 KB
testcase_26 AC 45 ms
55,840 KB
testcase_27 AC 61 ms
67,868 KB
testcase_28 AC 53 ms
65,708 KB
testcase_29 AC 60 ms
66,888 KB
testcase_30 AC 46 ms
56,668 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