結果
問題 | No.2922 Rose Garden |
ユーザー | じきお。 |
提出日時 | 2024-10-12 20:35:30 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,243 bytes |
コンパイル時間 | 3,742 ms |
コンパイル使用メモリ | 255,788 KB |
実行使用メモリ | 19,024 KB |
最終ジャッジ日時 | 2024-10-12 20:35:37 |
合計ジャッジ時間 | 6,325 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
12,160 KB |
testcase_01 | AC | 18 ms
8,832 KB |
testcase_02 | AC | 27 ms
11,520 KB |
testcase_03 | AC | 49 ms
18,092 KB |
testcase_04 | AC | 28 ms
12,032 KB |
testcase_05 | AC | 25 ms
11,008 KB |
testcase_06 | AC | 17 ms
8,320 KB |
testcase_07 | AC | 40 ms
16,128 KB |
testcase_08 | AC | 9 ms
5,888 KB |
testcase_09 | AC | 43 ms
16,640 KB |
testcase_10 | AC | 14 ms
7,424 KB |
testcase_11 | AC | 10 ms
5,888 KB |
testcase_12 | AC | 28 ms
12,160 KB |
testcase_13 | AC | 34 ms
14,720 KB |
testcase_14 | AC | 9 ms
5,504 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 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
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 | 2 ms
5,248 KB |
testcase_51 | AC | 2 ms
5,248 KB |
testcase_52 | AC | 2 ms
5,248 KB |
ソースコード
#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]); for (int i = 0; i < 3 * N && !que.empty(); i++) { auto [id, s, h] = que.front(); if (id == N - 1) { cout << "Yes" << '\n'; return 0; } que.pop(); // そのまま上昇して, 次の足場に移動 if (h + s * B >= H[id + 1]) { que.emplace(id + 1, s - ceil(H[id + 1] - h, B), h + ceil(H[id + 1] - h, B) * B); } // 一度地面につく que.emplace(id, S, H[id]); } cout << "No" << '\n'; }