結果

問題 No.2922 Rose Garden
ユーザー ryuuichiryuuichi
提出日時 2024-10-12 16:26:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 583 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 107,536 KB
最終ジャッジ日時 2024-10-12 16:27:22
合計ジャッジ時間 47,438 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,371 ms
92,916 KB
testcase_01 AC 1,236 ms
85,092 KB
testcase_02 AC 2,200 ms
92,672 KB
testcase_03 TLE -
testcase_04 AC 2,315 ms
92,436 KB
testcase_05 AC 255 ms
91,288 KB
testcase_06 AC 1,042 ms
84,612 KB
testcase_07 AC 2,524 ms
101,004 KB
testcase_08 AC 556 ms
79,516 KB
testcase_09 AC 1,756 ms
104,388 KB
testcase_10 AC 413 ms
83,412 KB
testcase_11 AC 668 ms
79,672 KB
testcase_12 AC 1,834 ms
92,900 KB
testcase_13 AC 661 ms
97,888 KB
testcase_14 AC 301 ms
78,220 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 86 ms
76,676 KB
testcase_31 AC 76 ms
76,180 KB
testcase_32 AC 114 ms
76,532 KB
testcase_33 AC 63 ms
76,232 KB
testcase_34 AC 89 ms
76,236 KB
testcase_35 AC 88 ms
76,180 KB
testcase_36 AC 213 ms
76,604 KB
testcase_37 AC 68 ms
77,132 KB
testcase_38 AC 75 ms
76,596 KB
testcase_39 AC 147 ms
76,936 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 35 ms
52,616 KB
testcase_51 AC 32 ms
52,604 KB
testcase_52 AC 32 ms
52,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,B=map(int,input().split())
H=list(map(int,input().split()))

dp=[-1 for _ in range(S+1)]
#道中でH_{i+1}に到達できない場合を知りたい
#NDP使えば通るっしょ()
dp[S]=H[0]
for i in range(N):
    ndp=[-1 for _ in range(S+1)]
    m=0
    for j in reversed(range(S+1)):
        if dp[j]==-1:continue
        m=max(m,dp[j])
        if j>0:dp[j-1]=max(dp[j]+B,dp[j-1])
        
        if i!=N-1:
            if dp[j]>H[i+1]:ndp[j]=max(dp[j],ndp[j])
    if m>=H[i]:dp[S]=max(dp[S],H[i])

    dp=(dp if i==N-1 else ndp[:])
print("Yes" if dp.count(-1)!=S+1 else "No")
0