結果

問題 No.2922 Rose Garden
ユーザー 学ぶマン学ぶマン
提出日時 2024-10-14 15:37:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,186 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-10-14 15:38:33
合計ジャッジ時間 36,770 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,439 ms
92,672 KB
testcase_01 AC 882 ms
85,504 KB
testcase_02 AC 1,586 ms
92,032 KB
testcase_03 AC 2,645 ms
107,392 KB
testcase_04 AC 1,601 ms
92,800 KB
testcase_05 AC 450 ms
90,112 KB
testcase_06 AC 684 ms
84,096 KB
testcase_07 WA -
testcase_08 AC 386 ms
75,136 KB
testcase_09 AC 1,092 ms
103,808 KB
testcase_10 AC 285 ms
81,024 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,081 ms
97,536 KB
testcase_14 WA -
testcase_15 AC 1,642 ms
90,624 KB
testcase_16 AC 1,067 ms
97,024 KB
testcase_17 AC 895 ms
103,936 KB
testcase_18 AC 226 ms
67,584 KB
testcase_19 AC 1,132 ms
86,912 KB
testcase_20 AC 1,166 ms
94,592 KB
testcase_21 AC 1,356 ms
103,808 KB
testcase_22 AC 150 ms
90,624 KB
testcase_23 AC 199 ms
100,480 KB
testcase_24 AC 246 ms
72,576 KB
testcase_25 AC 164 ms
88,448 KB
testcase_26 AC 1,730 ms
95,104 KB
testcase_27 AC 1,701 ms
97,664 KB
testcase_28 AC 292 ms
95,104 KB
testcase_29 AC 1,591 ms
92,672 KB
testcase_30 AC 57 ms
63,488 KB
testcase_31 AC 55 ms
62,208 KB
testcase_32 AC 69 ms
65,152 KB
testcase_33 AC 56 ms
61,952 KB
testcase_34 AC 59 ms
64,512 KB
testcase_35 AC 58 ms
62,336 KB
testcase_36 AC 103 ms
67,200 KB
testcase_37 AC 58 ms
66,304 KB
testcase_38 AC 58 ms
63,232 KB
testcase_39 AC 65 ms
65,024 KB
testcase_40 AC 973 ms
94,720 KB
testcase_41 AC 82 ms
79,360 KB
testcase_42 AC 447 ms
107,392 KB
testcase_43 AC 221 ms
86,784 KB
testcase_44 AC 353 ms
104,064 KB
testcase_45 AC 193 ms
74,368 KB
testcase_46 AC 119 ms
100,992 KB
testcase_47 AC 112 ms
94,976 KB
testcase_48 AC 67 ms
72,192 KB
testcase_49 AC 115 ms
100,992 KB
testcase_50 AC 38 ms
52,096 KB
testcase_51 AC 38 ms
51,712 KB
testcase_52 AC 37 ms
51,584 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

# in-place でやる
for i in range(N - 1): # N - 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(DP, j - cost, DP[j] + cost * B)
            # 捻出できる=次の足場上に浮いていられる
            landing = True
        # 捻出できないなら その高さ・スタミナからは到達不能

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

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