結果
問題 | No.2922 Rose Garden |
ユーザー | atcoder8 |
提出日時 | 2024-10-12 15:35:48 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 183 ms / 3,000 ms |
コード長 | 1,547 bytes |
コンパイル時間 | 13,144 ms |
コンパイル使用メモリ | 379,596 KB |
実行使用メモリ | 5,504 KB |
最終ジャッジ日時 | 2024-10-12 15:36:07 |
合計ジャッジ時間 | 17,679 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 119 ms
5,248 KB |
testcase_01 | AC | 62 ms
5,248 KB |
testcase_02 | AC | 121 ms
5,248 KB |
testcase_03 | AC | 183 ms
5,376 KB |
testcase_04 | AC | 121 ms
5,248 KB |
testcase_05 | AC | 46 ms
5,248 KB |
testcase_06 | AC | 59 ms
5,248 KB |
testcase_07 | AC | 142 ms
5,248 KB |
testcase_08 | AC | 32 ms
5,248 KB |
testcase_09 | AC | 99 ms
5,248 KB |
testcase_10 | AC | 20 ms
5,248 KB |
testcase_11 | AC | 34 ms
5,248 KB |
testcase_12 | AC | 93 ms
5,248 KB |
testcase_13 | AC | 104 ms
5,248 KB |
testcase_14 | AC | 16 ms
5,248 KB |
testcase_15 | AC | 131 ms
5,248 KB |
testcase_16 | AC | 86 ms
5,248 KB |
testcase_17 | AC | 103 ms
5,248 KB |
testcase_18 | AC | 14 ms
5,248 KB |
testcase_19 | AC | 93 ms
5,248 KB |
testcase_20 | AC | 115 ms
5,248 KB |
testcase_21 | AC | 137 ms
5,248 KB |
testcase_22 | AC | 25 ms
5,248 KB |
testcase_23 | AC | 38 ms
5,248 KB |
testcase_24 | AC | 20 ms
5,248 KB |
testcase_25 | AC | 25 ms
5,248 KB |
testcase_26 | AC | 154 ms
5,248 KB |
testcase_27 | AC | 151 ms
5,248 KB |
testcase_28 | AC | 41 ms
5,248 KB |
testcase_29 | AC | 130 ms
5,248 KB |
testcase_30 | AC | 4 ms
5,248 KB |
testcase_31 | AC | 3 ms
5,248 KB |
testcase_32 | AC | 6 ms
5,248 KB |
testcase_33 | AC | 2 ms
5,248 KB |
testcase_34 | AC | 4 ms
5,248 KB |
testcase_35 | AC | 4 ms
5,248 KB |
testcase_36 | AC | 15 ms
5,248 KB |
testcase_37 | AC | 3 ms
5,248 KB |
testcase_38 | AC | 3 ms
5,248 KB |
testcase_39 | AC | 8 ms
5,248 KB |
testcase_40 | AC | 98 ms
5,248 KB |
testcase_41 | AC | 6 ms
5,248 KB |
testcase_42 | AC | 66 ms
5,248 KB |
testcase_43 | AC | 23 ms
5,248 KB |
testcase_44 | AC | 65 ms
5,248 KB |
testcase_45 | AC | 17 ms
5,248 KB |
testcase_46 | AC | 19 ms
5,504 KB |
testcase_47 | AC | 14 ms
5,248 KB |
testcase_48 | AC | 3 ms
5,248 KB |
testcase_49 | AC | 17 ms
5,248 KB |
testcase_50 | AC | 1 ms
5,248 KB |
testcase_51 | AC | 1 ms
5,248 KB |
testcase_52 | AC | 1 ms
5,248 KB |
ソースコード
use proconio::input; fn main() { input! { (n, s, b): (usize, usize, usize), hh: [usize; n], } // dp[i]: スタミナがiのときの最高高度 let mut dp = vec![None; s + 1]; dp[s] = Some(hh[0]); let mut next_dp = vec![None; s + 1]; for &h in &hh[1..] { for (stamina, &max_height) in dp.iter().enumerate() { let Some(max_height) = max_height else { continue; }; let consumption = (h.saturating_sub(max_height) + b - 1) / b; if consumption <= stamina { chmax_for_option( &mut next_dp[stamina - consumption], max_height + b * consumption, ); chmax_for_option(&mut next_dp[s], h); } } std::mem::swap(&mut dp, &mut next_dp); next_dp.fill(None); } let ans = dp.iter().any(|max_height| max_height.is_some()); println!("{}", if ans { "Yes" } else { "No" }); } /// If `value` is `None` or contains a value less than `cand_value`, update it to `Some(cand_value)`. /// /// Returns whether `value` has been updated or not as a bool value. /// /// # Arguments /// /// * `value` - Reference variable to be updated. /// * `cand_value` - Candidate value for update. pub fn chmax_for_option<T>(value: &mut Option<T>, cand_value: T) -> bool where T: PartialOrd, { if value.as_ref().is_some_and(|cost| cost >= &cand_value) { return false; } *value = Some(cand_value); true }