結果

問題 No.595 登山
ユーザー mkawa2mkawa2
提出日時 2020-05-24 22:29:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 495 ms / 1,500 ms
コード長 1,008 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 40,396 KB
最終ジャッジ日時 2024-10-12 09:46:11
合計ジャッジ時間 10,843 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 34 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 462 ms
35,548 KB
testcase_05 AC 148 ms
17,788 KB
testcase_06 AC 393 ms
33,440 KB
testcase_07 AC 67 ms
12,928 KB
testcase_08 AC 89 ms
13,996 KB
testcase_09 AC 398 ms
33,816 KB
testcase_10 AC 283 ms
24,452 KB
testcase_11 AC 254 ms
25,600 KB
testcase_12 AC 61 ms
12,672 KB
testcase_13 AC 137 ms
16,464 KB
testcase_14 AC 437 ms
28,060 KB
testcase_15 AC 436 ms
28,056 KB
testcase_16 AC 443 ms
27,800 KB
testcase_17 AC 442 ms
27,604 KB
testcase_18 AC 438 ms
25,792 KB
testcase_19 AC 494 ms
39,760 KB
testcase_20 AC 495 ms
40,300 KB
testcase_21 AC 490 ms
39,628 KB
testcase_22 AC 490 ms
40,396 KB
testcase_23 AC 487 ms
39,444 KB
testcase_24 AC 31 ms
10,880 KB
testcase_25 AC 31 ms
10,880 KB
testcase_26 AC 488 ms
38,200 KB
testcase_27 AC 459 ms
34,104 KB
testcase_28 AC 459 ms
34,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
from itertools import *
from bisect import *
from collections import *
from heapq import *
import sys

sys.setrecursionlimit(10 ** 6)

def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def SI(): return sys.stdin.readline()[:-1]
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
int1 = lambda x: int(x) - 1
def MI1(): return map(int1, sys.stdin.readline().split())
def LI1(): return list(map(int1, sys.stdin.readline().split()))
p2D = lambda x: print(*x, sep="\n")
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    n,p=MI()
    hh=LI()
    dpf=[0]*n
    dpb=[p]*n
    for i in range(1,n):
        warp=min(dpf[i-1],dpb[i-1])+p
        dpf[i]=min(warp,dpf[i-1]+max(0,hh[i]-hh[i-1]))
        dpb[i]=min(warp,dpb[i-1]+max(0,-hh[i]+hh[i-1]))
    print(min(dpf[-1],dpb[-1]))

main()
0