結果

問題 No.37 遊園地のアトラクション
ユーザー ゆるくゆるく
提出日時 2015-05-06 04:57:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 727 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-05 19:11:23
合計ジャッジ時間 8,369 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
12,288 KB
testcase_01 AC 40 ms
12,160 KB
testcase_02 AC 175 ms
11,904 KB
testcase_03 AC 240 ms
12,288 KB
testcase_04 AC 111 ms
12,160 KB
testcase_05 AC 170 ms
12,032 KB
testcase_06 AC 150 ms
12,288 KB
testcase_07 AC 733 ms
12,288 KB
testcase_08 AC 102 ms
11,904 KB
testcase_09 AC 52 ms
12,160 KB
testcase_10 AC 563 ms
12,160 KB
testcase_11 AC 548 ms
12,160 KB
testcase_12 AC 168 ms
12,288 KB
testcase_13 AC 218 ms
12,288 KB
testcase_14 AC 111 ms
12,160 KB
testcase_15 WA -
testcase_16 AC 324 ms
12,032 KB
testcase_17 AC 281 ms
12,288 KB
testcase_18 AC 686 ms
12,032 KB
testcase_19 AC 55 ms
12,160 KB
testcase_20 AC 255 ms
12,160 KB
testcase_21 AC 120 ms
12,288 KB
testcase_22 AC 1,000 ms
12,416 KB
testcase_23 AC 36 ms
12,032 KB
testcase_24 AC 38 ms
11,776 KB
testcase_25 AC 37 ms
11,904 KB
testcase_26 AC 38 ms
11,776 KB
testcase_27 WA -
testcase_28 AC 37 ms
12,032 KB
testcase_29 AC 95 ms
12,032 KB
testcase_30 AC 37 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(n)
import heapq
import re
import bisect
import random
import math
import itertools
from collections import defaultdict, deque
from copy import deepcopy
from decimal import *

t = int(input())
n = int(input())
ct = deque(map(int, input().split()))
vt = deque(map(int, input().split()))

dp = [0] * 20001
c = [0] * 2000
v = [0] * 2000
for i in range(len(ct)):
    c[i] = ct[i]
    v[i] = vt[i]
p = n
for i in range(n):
    j = c[i]
    k = v[i]
    while(1):
        k = k // 2
        if k == 0:
            break
        c[p] = j
        v[p] = k
        p += 1
for i in range(p):
    for j in reversed(range(t - c[i])):
        dp[j + c[i]] = max(dp[j + c[i]], dp[j] + v[i])
print(dp[t - 1])
0