結果

問題 No.2922 Rose Garden
ユーザー a01sa01toa01sa01to
提出日時 2024-10-16 00:01:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 3,000 ms
コード長 642 bytes
コンパイル時間 3,475 ms
コンパイル使用メモリ 246,352 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-16 00:01:17
合計ジャッジ時間 9,415 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
6,820 KB
testcase_01 AC 29 ms
6,816 KB
testcase_02 AC 45 ms
6,820 KB
testcase_03 AC 77 ms
6,816 KB
testcase_04 AC 46 ms
6,820 KB
testcase_05 AC 41 ms
6,816 KB
testcase_06 AC 29 ms
6,820 KB
testcase_07 AC 65 ms
6,816 KB
testcase_08 AC 16 ms
6,816 KB
testcase_09 AC 69 ms
6,820 KB
testcase_10 AC 24 ms
6,820 KB
testcase_11 AC 14 ms
6,820 KB
testcase_12 AC 47 ms
6,816 KB
testcase_13 AC 60 ms
6,816 KB
testcase_14 AC 13 ms
6,816 KB
testcase_15 AC 45 ms
6,816 KB
testcase_16 AC 54 ms
6,820 KB
testcase_17 AC 76 ms
6,820 KB
testcase_18 AC 7 ms
6,820 KB
testcase_19 AC 35 ms
6,816 KB
testcase_20 AC 50 ms
6,816 KB
testcase_21 AC 72 ms
6,816 KB
testcase_22 AC 42 ms
6,820 KB
testcase_23 AC 68 ms
6,820 KB
testcase_24 AC 13 ms
6,816 KB
testcase_25 AC 38 ms
6,820 KB
testcase_26 AC 55 ms
6,820 KB
testcase_27 AC 60 ms
6,816 KB
testcase_28 AC 55 ms
6,820 KB
testcase_29 AC 46 ms
6,816 KB
testcase_30 AC 5 ms
6,816 KB
testcase_31 AC 3 ms
6,820 KB
testcase_32 AC 4 ms
6,820 KB
testcase_33 AC 3 ms
6,820 KB
testcase_34 AC 6 ms
6,816 KB
testcase_35 AC 4 ms
6,820 KB
testcase_36 AC 8 ms
6,816 KB
testcase_37 AC 10 ms
6,816 KB
testcase_38 AC 5 ms
6,816 KB
testcase_39 AC 7 ms
6,820 KB
testcase_40 AC 48 ms
6,820 KB
testcase_41 AC 25 ms
6,816 KB
testcase_42 AC 77 ms
6,816 KB
testcase_43 AC 34 ms
6,816 KB
testcase_44 AC 74 ms
6,816 KB
testcase_45 AC 16 ms
6,816 KB
testcase_46 AC 80 ms
6,820 KB
testcase_47 AC 53 ms
6,816 KB
testcase_48 AC 14 ms
6,816 KB
testcase_49 AC 67 ms
6,820 KB
testcase_50 AC 2 ms
6,816 KB
testcase_51 AC 2 ms
6,816 KB
testcase_52 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  int n, s, b;
  cin >> n >> s >> b;
  const int inits = s;
  vector<int> a(n);
  rep(i, n) cin >> a[i];
  int now = 0;
  rep(i, n) {
    if (i == n - 1) {
      cout << "Yes" << endl;
      break;
    }
    if (a[i + 1] >= now) {
      if (s < (a[i + 1] - now + b - 1) / b) {
        cout << "No" << endl;
        break;
      }
      s = inits;
      now = a[i + 1];
    }
  }
  return 0;
}
0