結果

問題 No.595 登山
ユーザー koba-e964koba-e964
提出日時 2021-11-15 00:47:56
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 1,617 bytes
コンパイル時間 4,243 ms
コンパイル使用メモリ 149,016 KB
実行使用メモリ 8,288 KB
最終ジャッジ日時 2023-08-20 10:29:56
合計ジャッジ時間 2,989 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 38 ms
8,028 KB
testcase_05 WA -
testcase_06 AC 32 ms
6,880 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 23 ms
5,384 KB
testcase_11 AC 20 ms
5,108 KB
testcase_12 AC 4 ms
4,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 28 ms
8,260 KB
testcase_18 WA -
testcase_19 AC 53 ms
8,236 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1 ms
4,380 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 37 ms
8,196 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(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);
}
0