結果

問題 No.2922 Rose Garden
ユーザー じきお。じきお。
提出日時 2024-10-12 20:39:10
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,091 ms / 3,000 ms
コード長 1,348 bytes
コンパイル時間 3,111 ms
コンパイル使用メモリ 256,532 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-10-12 20:39:23
合計ジャッジ時間 9,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
5,248 KB
testcase_01 AC 11 ms
5,248 KB
testcase_02 AC 28 ms
5,248 KB
testcase_03 AC 41 ms
5,504 KB
testcase_04 AC 24 ms
5,248 KB
testcase_05 AC 27 ms
5,248 KB
testcase_06 AC 20 ms
5,248 KB
testcase_07 AC 35 ms
5,248 KB
testcase_08 AC 12 ms
5,248 KB
testcase_09 AC 32 ms
5,248 KB
testcase_10 AC 8 ms
5,248 KB
testcase_11 AC 19 ms
5,248 KB
testcase_12 AC 19 ms
5,248 KB
testcase_13 AC 38 ms
5,248 KB
testcase_14 AC 13 ms
5,248 KB
testcase_15 AC 40 ms
5,248 KB
testcase_16 AC 34 ms
5,248 KB
testcase_17 AC 63 ms
5,376 KB
testcase_18 AC 5 ms
5,248 KB
testcase_19 AC 29 ms
5,248 KB
testcase_20 AC 38 ms
5,248 KB
testcase_21 AC 62 ms
5,248 KB
testcase_22 AC 35 ms
5,248 KB
testcase_23 AC 53 ms
5,248 KB
testcase_24 AC 9 ms
5,248 KB
testcase_25 AC 30 ms
5,248 KB
testcase_26 AC 40 ms
5,248 KB
testcase_27 AC 48 ms
5,248 KB
testcase_28 AC 35 ms
5,248 KB
testcase_29 AC 35 ms
5,248 KB
testcase_30 AC 243 ms
5,248 KB
testcase_31 AC 15 ms
5,248 KB
testcase_32 AC 76 ms
5,248 KB
testcase_33 AC 8 ms
5,248 KB
testcase_34 AC 287 ms
5,248 KB
testcase_35 AC 51 ms
5,248 KB
testcase_36 AC 676 ms
5,248 KB
testcase_37 AC 1,091 ms
5,248 KB
testcase_38 AC 177 ms
5,248 KB
testcase_39 AC 577 ms
5,248 KB
testcase_40 AC 54 ms
5,248 KB
testcase_41 AC 15 ms
5,248 KB
testcase_42 AC 57 ms
5,376 KB
testcase_43 AC 21 ms
5,248 KB
testcase_44 AC 64 ms
5,376 KB
testcase_45 AC 12 ms
5,248 KB
testcase_46 AC 50 ms
5,632 KB
testcase_47 AC 42 ms
5,248 KB
testcase_48 AC 8 ms
5,248 KB
testcase_49 AC 47 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>
using namespace std;
using ll = long long;

#ifdef LOCAL
#include <debug_print.hpp>
#define debug(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#define debug(...) (static_cast<void>(0))
#endif

template <class T, class U>
T ceil(T x, U y) {
    return (x > 0 ? (x + y - 1) / y : x / y);
}
template <class T, class U>
T floor(T x, U y) {
    return (x > 0 ? x / y : (x - y + 1) / y);
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(20);
    ll N, S, B;
    cin >> N >> S >> B;
    vector<ll> H(N);
    for (int i = 0; i < N; i++) cin >> H[i];

    // {id, stamina, height}
    queue<tuple<int, ll, ll>> que;
    que.emplace(0, S, H[0]);
    vector<int> seen(N); // 着地したか
    while (!que.empty()) {
        auto [id, s, h] = que.front();
        if (id == N - 1) {
            cout << "Yes" << '\n';
            return 0;
        }
        que.pop();
        // そのまま上昇して, 次の足場に移動
        if (h + s * B >= H[id + 1]) {
            ll diff = max<ll>(0, H[id + 1] - h);
            que.emplace(id + 1, s - ceil(diff, B), h + ceil(diff, B) * B);
        }
        // 一度地面につく
        if (seen[id]) continue;
        seen[id] = true;
        que.emplace(id, S, H[id]);
    }

    cout << "No" << '\n';
}
0