結果

問題 No.37 遊園地のアトラクション
ユーザー mkawa2mkawa2
提出日時 2020-01-08 16:59:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 506 ms / 5,000 ms
コード長 438 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,704 KB
最終ジャッジ日時 2024-10-10 13:39:24
合計ジャッジ時間 18,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 476 ms
44,324 KB
testcase_01 AC 491 ms
44,200 KB
testcase_02 AC 490 ms
44,068 KB
testcase_03 AC 494 ms
44,332 KB
testcase_04 AC 474 ms
44,328 KB
testcase_05 AC 499 ms
44,324 KB
testcase_06 AC 491 ms
44,068 KB
testcase_07 AC 493 ms
44,196 KB
testcase_08 AC 489 ms
44,196 KB
testcase_09 AC 499 ms
44,328 KB
testcase_10 AC 490 ms
44,200 KB
testcase_11 AC 496 ms
43,940 KB
testcase_12 AC 489 ms
44,460 KB
testcase_13 AC 495 ms
44,192 KB
testcase_14 AC 487 ms
44,452 KB
testcase_15 AC 490 ms
44,340 KB
testcase_16 AC 497 ms
44,452 KB
testcase_17 AC 501 ms
44,704 KB
testcase_18 AC 489 ms
44,068 KB
testcase_19 AC 501 ms
44,064 KB
testcase_20 AC 486 ms
44,328 KB
testcase_21 AC 490 ms
44,208 KB
testcase_22 AC 494 ms
44,324 KB
testcase_23 AC 486 ms
44,068 KB
testcase_24 AC 484 ms
44,204 KB
testcase_25 AC 489 ms
44,068 KB
testcase_26 AC 482 ms
44,072 KB
testcase_27 AC 488 ms
44,584 KB
testcase_28 AC 506 ms
44,068 KB
testcase_29 AC 494 ms
44,336 KB
testcase_30 AC 499 ms
43,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
import numpy as np

def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))

def main():
    t=II()
    n=II()
    cc=LI()
    vv=LI()
    dp=np.zeros(t+1,dtype="i8")
    for c,v in zip(cc,vv):
        if c>t:continue
        while v:
            np.maximum(dp[t:c-1:-1],dp[t-c::-1]+v,out=dp[t:c-1:-1])
            v>>=1
    print(dp[t])

main()
0