結果

問題 No.595 登山
ユーザー koba-e964koba-e964
提出日時 2021-11-15 00:50:18
言語 Rust
(1.77.0)
結果
AC  
実行時間 59 ms / 1,500 ms
コード長 1,652 bytes
コンパイル時間 6,698 ms
コンパイル使用メモリ 154,608 KB
実行使用メモリ 8,292 KB
最終ジャッジ日時 2023-08-20 10:31:13
合計ジャッジ時間 7,055 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 42 ms
7,672 KB
testcase_05 AC 12 ms
4,380 KB
testcase_06 AC 36 ms
6,960 KB
testcase_07 AC 5 ms
4,376 KB
testcase_08 AC 7 ms
4,376 KB
testcase_09 AC 36 ms
6,920 KB
testcase_10 AC 26 ms
5,380 KB
testcase_11 AC 22 ms
5,044 KB
testcase_12 AC 4 ms
4,380 KB
testcase_13 AC 12 ms
4,380 KB
testcase_14 AC 29 ms
8,284 KB
testcase_15 AC 30 ms
8,292 KB
testcase_16 AC 30 ms
8,284 KB
testcase_17 AC 31 ms
8,248 KB
testcase_18 AC 30 ms
8,236 KB
testcase_19 AC 58 ms
8,288 KB
testcase_20 AC 58 ms
8,284 KB
testcase_21 AC 59 ms
8,280 KB
testcase_22 AC 58 ms
8,288 KB
testcase_23 AC 58 ms
8,288 KB
testcase_24 AC 1 ms
4,380 KB
testcase_25 AC 1 ms
4,380 KB
testcase_26 AC 56 ms
8,292 KB
testcase_27 AC 42 ms
8,244 KB
testcase_28 AC 41 ms
8,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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(acc_l[j - 1],
                    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]);
}
0