結果

問題 No.2922 Rose Garden
ユーザー 学ぶマン学ぶマン
提出日時 2024-10-14 15:56:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,276 ms / 3,000 ms
コード長 1,335 bytes
コンパイル時間 731 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 107,472 KB
最終ジャッジ日時 2024-10-14 15:56:27
合計ジャッジ時間 21,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
92,640 KB
testcase_01 AC 173 ms
82,356 KB
testcase_02 AC 670 ms
92,060 KB
testcase_03 AC 571 ms
107,304 KB
testcase_04 AC 720 ms
92,428 KB
testcase_05 AC 329 ms
90,200 KB
testcase_06 AC 192 ms
82,260 KB
testcase_07 AC 1,276 ms
100,296 KB
testcase_08 AC 195 ms
75,900 KB
testcase_09 AC 246 ms
103,484 KB
testcase_10 AC 64 ms
78,336 KB
testcase_11 AC 369 ms
74,780 KB
testcase_12 AC 343 ms
92,380 KB
testcase_13 AC 372 ms
97,900 KB
testcase_14 AC 226 ms
74,076 KB
testcase_15 AC 1,209 ms
90,744 KB
testcase_16 AC 880 ms
97,148 KB
testcase_17 AC 553 ms
103,912 KB
testcase_18 AC 140 ms
68,480 KB
testcase_19 AC 734 ms
86,656 KB
testcase_20 AC 1,157 ms
95,084 KB
testcase_21 AC 726 ms
103,292 KB
testcase_22 AC 119 ms
90,684 KB
testcase_23 AC 210 ms
100,560 KB
testcase_24 AC 289 ms
74,260 KB
testcase_25 AC 138 ms
88,384 KB
testcase_26 AC 1,164 ms
95,604 KB
testcase_27 AC 873 ms
97,856 KB
testcase_28 AC 276 ms
94,888 KB
testcase_29 AC 965 ms
92,380 KB
testcase_30 AC 51 ms
65,124 KB
testcase_31 AC 56 ms
63,624 KB
testcase_32 AC 67 ms
64,200 KB
testcase_33 AC 51 ms
62,704 KB
testcase_34 AC 54 ms
65,436 KB
testcase_35 AC 55 ms
63,804 KB
testcase_36 AC 90 ms
68,288 KB
testcase_37 AC 51 ms
66,952 KB
testcase_38 AC 50 ms
63,072 KB
testcase_39 AC 62 ms
66,100 KB
testcase_40 AC 1,000 ms
94,680 KB
testcase_41 AC 64 ms
81,076 KB
testcase_42 AC 350 ms
107,472 KB
testcase_43 AC 186 ms
86,748 KB
testcase_44 AC 269 ms
103,840 KB
testcase_45 AC 100 ms
76,820 KB
testcase_46 AC 115 ms
101,396 KB
testcase_47 AC 98 ms
94,648 KB
testcase_48 AC 58 ms
72,668 KB
testcase_49 AC 111 ms
100,592 KB
testcase_50 AC 36 ms
53,960 KB
testcase_51 AC 37 ms
53,604 KB
testcase_52 AC 36 ms
52,964 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] < H[i]: # iターン目のsrc足場H[i] より低い高さからの寄与は無視
            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] に着地した場合のステータスも考慮
        chmax(DP, S, H[i + 1])

    else: #途中経過で landing できない足場があったらその時点で詰み
        exit(print('No'))

print('Yes')
0