結果
問題 | No.595 登山 |
ユーザー | koba-e964 |
提出日時 | 2021-11-15 00:47:56 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,617 bytes |
コンパイル時間 | 11,822 ms |
コンパイル使用メモリ | 405,760 KB |
実行使用メモリ | 8,192 KB |
最終ジャッジ日時 | 2024-11-30 12:08:16 |
合計ジャッジ時間 | 13,676 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 21 ms
7,808 KB |
testcase_05 | WA | - |
testcase_06 | AC | 17 ms
7,168 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 12 ms
5,376 KB |
testcase_11 | AC | 11 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 17 ms
8,064 KB |
testcase_18 | WA | - |
testcase_19 | AC | 27 ms
8,064 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1 ms
5,248 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 21 ms
8,064 KB |
ソースコード
use std::cmp::*; // https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8 macro_rules! input { ($($r:tt)*) => { let stdin = std::io::stdin(); let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock())); let mut next = move || -> String{ bytes.by_ref().map(|r|r.unwrap() as char) .skip_while(|c|c.is_whitespace()) .take_while(|c|!c.is_whitespace()) .collect() }; input_inner!{next, $($r)*} }; } macro_rules! input_inner { ($next:expr) => {}; ($next:expr,) => {}; ($next:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($next, $t); input_inner!{$next $($r)*} }; } macro_rules! read_value { ($next:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>() }; ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error")); } fn main() { input! { n: usize, p: i64, h: [i64; n], } let mut acc_l = vec![0; n]; for i in 0..n - 1 { acc_l[i + 1] = acc_l[i] + max(0, h[i + 1] - h[i]); } let mut acc_r = vec![0; n]; for i in (0..n - 1).rev() { acc_r[i] = acc_r[i + 1] + max(0, h[i] - h[i + 1]); } let mut dp = vec![0; n + 1]; let mut mim = 0; let mut mip = acc_r[0]; for j in 1..n + 1 { dp[j] = min(mim + acc_l[j - 1], mip - acc_r[j - 1]) + p; if j < n { mim = min(mim, dp[j] - acc_l[j]); mip = min(mip, dp[j] + acc_r[j]); } } println!("{}", dp[n] - p); }