結果

問題 No.2922 Rose Garden
ユーザー SpicaSpica
提出日時 2024-10-12 15:23:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 3,000 ms
コード長 2,066 bytes
コンパイル時間 4,446 ms
コンパイル使用メモリ 262,824 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 15:23:22
合計ジャッジ時間 7,940 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
5,248 KB
testcase_01 AC 29 ms
5,248 KB
testcase_02 AC 45 ms
5,248 KB
testcase_03 AC 78 ms
5,248 KB
testcase_04 AC 46 ms
5,248 KB
testcase_05 AC 40 ms
5,248 KB
testcase_06 AC 28 ms
5,248 KB
testcase_07 AC 65 ms
5,248 KB
testcase_08 AC 15 ms
5,248 KB
testcase_09 AC 67 ms
5,248 KB
testcase_10 AC 23 ms
5,248 KB
testcase_11 AC 15 ms
5,248 KB
testcase_12 AC 45 ms
5,248 KB
testcase_13 AC 60 ms
5,248 KB
testcase_14 AC 13 ms
5,248 KB
testcase_15 AC 45 ms
5,248 KB
testcase_16 AC 53 ms
5,248 KB
testcase_17 AC 75 ms
5,248 KB
testcase_18 AC 6 ms
5,248 KB
testcase_19 AC 34 ms
5,248 KB
testcase_20 AC 50 ms
5,248 KB
testcase_21 AC 72 ms
5,248 KB
testcase_22 AC 43 ms
5,248 KB
testcase_23 AC 67 ms
5,248 KB
testcase_24 AC 12 ms
5,248 KB
testcase_25 AC 37 ms
5,248 KB
testcase_26 AC 55 ms
5,248 KB
testcase_27 AC 61 ms
5,248 KB
testcase_28 AC 53 ms
5,248 KB
testcase_29 AC 47 ms
5,248 KB
testcase_30 AC 5 ms
5,248 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 4 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 6 ms
5,248 KB
testcase_35 AC 3 ms
5,248 KB
testcase_36 AC 7 ms
5,248 KB
testcase_37 AC 9 ms
5,248 KB
testcase_38 AC 4 ms
5,248 KB
testcase_39 AC 7 ms
5,248 KB
testcase_40 AC 47 ms
5,248 KB
testcase_41 AC 24 ms
5,248 KB
testcase_42 AC 77 ms
5,248 KB
testcase_43 AC 34 ms
5,248 KB
testcase_44 AC 74 ms
5,248 KB
testcase_45 AC 15 ms
5,248 KB
testcase_46 AC 82 ms
5,248 KB
testcase_47 AC 54 ms
5,248 KB
testcase_48 AC 14 ms
5,248 KB
testcase_49 AC 68 ms
5,248 KB
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>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long; // -2^63 ~ 2^63-1 (9.2*10^18)
using ull = unsigned long long; // 0 ~ 2^64-1 (1.8*10^19)
using ld = long double;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rep2(i, m, n) for (int i = (m); (i) < int (n); i++)
#define all(v) v.begin(), v.end()
#define bit(n) (1ll<<(n)) // 2^n
#define sz(x) ((int)(x).size())
#define fi first
#define se second
#define pb emplace_back
template<class T> using maxpq = priority_queue<T>;
template<class T> using minpq = priority_queue<T, vector<T>, greater<T>>;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
const ll llINF = 1000000000000000000;
void YesNo(bool flag){
    if(flag) cout << "Yes" << endl;
    else cout << "No" << endl;
}
// 多次元vector生成
template<ll idx = 0, ll n, class T>
auto make_vec(const ll (&d)[n], T&& init) noexcept {
    if constexpr (idx < n) return std::vector(d[idx], make_vec<idx + 1>(d, std::forward<T>(init)));
    else return init;
}
template<class T, ll idx = 0, ll n>
auto make_vec(const ll (&d)[n], const T& init = {}) noexcept {
    if constexpr (idx < n) return std::vector(d[idx], make_vec<idx + 1>(d, init));
    else return init;
}
// auto 変数名 = make_vec<型>({a, b, ...}, 初期値);

ll my_ceil(ll a, ll b){
    if(a > 0){
        return (a-1)/b + 1;
    }
    else{
        return a/b;
    }
}

int main(){
    ll N, S, B;
    cin >> N >> S >> B;
    vector<ll> H(N);
    rep(i, N){
        cin >> H[i];
    }

    ll nowS = S, now = H[0];
    rep(i, N-1){
        if(now < H[i+1]){
            nowS -= my_ceil(H[i+1]-now, B);
            now += B*my_ceil(H[i+1]-now, B);
            if(nowS < 0){
                cout << "No" << endl;
                return 0;
            }
        }

        if(now-H[i+1] < B*(S-nowS)){
            now = H[i+1];
            nowS = S;
        }
    }
    cout << "Yes" << endl;
}
0