結果

問題 No.2922 Rose Garden
ユーザー 学ぶマン学ぶマン
提出日時 2024-10-14 15:32:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,533 ms / 3,000 ms
コード長 1,211 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 107,516 KB
最終ジャッジ日時 2024-10-14 15:32:30
合計ジャッジ時間 17,217 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 557 ms
92,928 KB
testcase_01 AC 305 ms
85,504 KB
testcase_02 AC 561 ms
92,480 KB
testcase_03 AC 784 ms
107,348 KB
testcase_04 AC 569 ms
92,676 KB
testcase_05 AC 184 ms
90,584 KB
testcase_06 AC 280 ms
84,080 KB
testcase_07 AC 604 ms
100,472 KB
testcase_08 AC 188 ms
79,568 KB
testcase_09 AC 346 ms
103,768 KB
testcase_10 AC 116 ms
82,852 KB
testcase_11 AC 186 ms
79,360 KB
testcase_12 AC 438 ms
92,732 KB
testcase_13 AC 352 ms
97,664 KB
testcase_14 AC 121 ms
78,240 KB
testcase_15 AC 1,533 ms
90,680 KB
testcase_16 AC 377 ms
97,584 KB
testcase_17 AC 355 ms
104,176 KB
testcase_18 AC 106 ms
76,076 KB
testcase_19 AC 397 ms
87,104 KB
testcase_20 AC 476 ms
94,956 KB
testcase_21 AC 430 ms
103,804 KB
testcase_22 AC 131 ms
90,684 KB
testcase_23 AC 165 ms
100,728 KB
testcase_24 AC 129 ms
78,268 KB
testcase_25 AC 150 ms
88,556 KB
testcase_26 AC 638 ms
94,932 KB
testcase_27 AC 612 ms
97,624 KB
testcase_28 AC 174 ms
95,356 KB
testcase_29 AC 554 ms
92,392 KB
testcase_30 AC 62 ms
75,740 KB
testcase_31 AC 63 ms
75,912 KB
testcase_32 AC 73 ms
75,560 KB
testcase_33 AC 49 ms
66,404 KB
testcase_34 AC 63 ms
75,872 KB
testcase_35 AC 68 ms
75,736 KB
testcase_36 AC 108 ms
76,212 KB
testcase_37 AC 52 ms
69,176 KB
testcase_38 AC 55 ms
73,868 KB
testcase_39 AC 77 ms
76,156 KB
testcase_40 AC 415 ms
94,800 KB
testcase_41 AC 74 ms
82,964 KB
testcase_42 AC 235 ms
107,516 KB
testcase_43 AC 127 ms
87,072 KB
testcase_44 AC 223 ms
103,988 KB
testcase_45 AC 100 ms
79,504 KB
testcase_46 AC 119 ms
101,264 KB
testcase_47 AC 105 ms
95,456 KB
testcase_48 AC 62 ms
74,908 KB
testcase_49 AC 116 ms
100,968 KB
testcase_50 AC 38 ms
53,720 KB
testcase_51 AC 38 ms
53,420 KB
testcase_52 AC 39 ms
52,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
inf = 1<<60
N, S, B = map(int, sys.stdin.readline().rstrip().split())
H = list(map(int, sys.stdin.readline().rstrip().split()))

def kiriage(a, b):
    return (a+b-1)//b

def chmax(DP,i,v):
    if DP[i] < v:
        DP[i] = v

def chmin(DP,i,v):
    if DP[i] > v:
        DP[i] = v

DP = [-1] * (S + 1)
DP[S] = H[0]
# DP[stamina] stamina で到達できる max height

for i in range(N - 1): # N - 1 ターン
    
    nDP = [-1] * (S + 1)
    landing = False

    for j in range(S + 1): # j: stamina DP[j]: height

        if DP[j] == -1:
            continue

        # 今いる高さ -> 次の足場の高低差
        diff = max(0, H[i + 1] - DP[j])

        cost = kiriage(diff, B)
        # stamina==j から cost を捻出できるか?
        if j >= cost:
            chmax(nDP, j - cost, DP[j] + cost * B)
            # 捻出できる=次の足場上に浮いていられる
            landing = True
        # 捻出できないなら その高さ・スタミナからは到達不能

    if landing:
        # 足場 H[i + 1] に着地した場合のステータスも考慮
        nDP[S] = max(nDP[S], H[i + 1])

    DP = nDP

if landing:
    print('Yes')
else:
    print('No')
0