結果

問題 No.2922 Rose Garden
ユーザー umezoumezo
提出日時 2024-10-12 14:42:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 597 bytes
コンパイル時間 2,892 ms
コンパイル使用メモリ 247,056 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-12 14:42:38
合計ジャッジ時間 5,430 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
5,248 KB
testcase_01 AC 10 ms
5,248 KB
testcase_02 AC 15 ms
5,248 KB
testcase_03 AC 25 ms
5,248 KB
testcase_04 AC 16 ms
5,248 KB
testcase_05 AC 14 ms
5,248 KB
testcase_06 AC 10 ms
5,248 KB
testcase_07 AC 23 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 22 ms
5,248 KB
testcase_10 AC 8 ms
5,248 KB
testcase_11 AC 7 ms
5,248 KB
testcase_12 AC 15 ms
5,248 KB
testcase_13 AC 20 ms
5,248 KB
testcase_14 AC 6 ms
5,248 KB
testcase_15 AC 16 ms
5,248 KB
testcase_16 AC 19 ms
5,248 KB
testcase_17 AC 27 ms
5,504 KB
testcase_18 AC 4 ms
5,248 KB
testcase_19 AC 13 ms
5,248 KB
testcase_20 AC 19 ms
5,248 KB
testcase_21 AC 27 ms
5,248 KB
testcase_22 AC 15 ms
5,248 KB
testcase_23 WA -
testcase_24 AC 5 ms
5,248 KB
testcase_25 AC 14 ms
5,248 KB
testcase_26 AC 21 ms
5,248 KB
testcase_27 AC 22 ms
5,248 KB
testcase_28 AC 19 ms
5,248 KB
testcase_29 AC 17 ms
5,248 KB
testcase_30 AC 5 ms
5,248 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 7 ms
5,248 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 6 ms
5,248 KB
testcase_35 AC 5 ms
5,248 KB
testcase_36 AC 17 ms
5,248 KB
testcase_37 AC 5 ms
5,248 KB
testcase_38 AC 4 ms
5,248 KB
testcase_39 AC 11 ms
5,248 KB
testcase_40 AC 20 ms
5,248 KB
testcase_41 WA -
testcase_42 AC 28 ms
5,376 KB
testcase_43 AC 13 ms
5,248 KB
testcase_44 AC 26 ms
5,376 KB
testcase_45 AC 6 ms
5,248 KB
testcase_46 WA -
testcase_47 AC 17 ms
5,248 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
template <class T> using V=vector<T>;
template <class T> using VV=V<V<T>>;

int dp[200200];
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  ll n,s,b;
  cin>>n>>s>>b;
  V<ll> H(n);
  rep(i,n) cin>>H[i];
  
  dp[0]=1;
  rep(i,n-1){
    if(dp[i]==0) continue;
    for(int j=1;j<=s && i+j<=n-1;j++){
      if(H[i+j]>H[i]+s*b) break;
      dp[i+j]=1;
    }
  }
  if(dp[n-1]) cout<<"Yes\n";
  else cout<<"No\n";
    
  return 0;
}
0