結果
問題 | No.2922 Rose Garden |
ユーザー | atcoder8 |
提出日時 | 2024-10-12 15:31:29 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,530 bytes |
コンパイル時間 | 12,868 ms |
コンパイル使用メモリ | 378,500 KB |
実行使用メモリ | 14,336 KB |
最終ジャッジ日時 | 2024-10-12 15:31:53 |
合計ジャッジ時間 | 21,343 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
ソースコード
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; }; for consumption in 0..=stamina { let cand_height = max_height + b * consumption; if cand_height >= h { chmax_for_option(&mut next_dp[stamina - consumption], cand_height); 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 }