結果

問題 No.2328 Build Walls
ユーザー 👑 zeronosu77108zeronosu77108
提出日時 2023-05-28 15:07:53
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 3,208 bytes
コンパイル時間 1,183 ms
コンパイル使用メモリ 159,268 KB
実行使用メモリ 55,020 KB
最終ジャッジ日時 2023-08-27 11:29:26
合計ジャッジ時間 9,820 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 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 1 ms
4,380 KB
testcase_05 AC 1 ms
4,384 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,500 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 221 ms
29,148 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 26 ms
5,632 KB
testcase_20 WA -
testcase_21 AC 196 ms
28,148 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 446 ms
53,936 KB
testcase_29 WA -
testcase_30 AC 461 ms
53,732 KB
testcase_31 AC 456 ms
54,092 KB
testcase_32 WA -
testcase_33 AC 451 ms
53,472 KB
testcase_34 AC 459 ms
54,048 KB
testcase_35 AC 455 ms
53,268 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::BTreeMap;

fn main() {
    let mut sc = Scanner::new();

    let h = sc.usize();
    let w = sc.usize();

    let mut a = vec![vec![0; w]; h-2];
    for i in 0..h-2 { a[i] = sc.vec::<i64>(w); }
    for i in 0..h-2 { for j in 0..w {
        if a[i][j] == -1 { a[i][j] = std::i64::MAX / 1_000_000; }
    }}

    let mut memo = BTreeMap::new();
    let mut ans = std::i64::MAX;
    for i in 0..h-2 {
        ans = ans.min(f(i, 0, h, w, &a, &mut memo));
    }

    if ans >= std::i64::MAX / 1_000_000 { ans = -1; }
    println!("{}", ans);
}

fn f(i:usize, j:usize, h:usize, w:usize, a:&Vec<Vec<i64>>, memo:&mut BTreeMap<(usize,usize), i64>) -> i64 {
    if j == w { return 0; }
    if let Some(&x) = memo.get(&(i, j)) { return x; }

    let mut res = std::i64::MAX / 1_000_000;
    if i > 0 { res = res.min(f(i-1, j+1, h, w, a, memo) + a[i][j]); }
    res = res.min(f(i, j+1, h, w, a, memo) + a[i][j]);
    if i+1 < h-2 { res = res.min(f(i+1, j+1, h, w, a, memo) + a[i][j]); }

    memo.insert((i, j), res);
    res
}

struct Scanner { s : std::collections::VecDeque<String> } #[allow(unused)] impl Scanner { fn new() -> Self { use std::io::Read; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); Self { s : s.split_whitespace().map(|s| s.to_string()).collect() } } fn reload(&mut self) -> () { use std::io::Read; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); self.s = s.split_whitespace().map(|s| s.to_string()).collect(); } fn usize(&mut self) -> usize { self.input() } fn usize1(&mut self) -> usize { self.input::<usize>() - 1 } fn isize(&mut self) -> isize { self.input() } fn i32(&mut self) -> i32 { self.input() } fn i64(&mut self) -> i64 { self.input() } fn i128(&mut self) -> i128 { self.input() } fn u8(&mut self) -> u8 { self.input() } fn u32(&mut self) -> u32 { self.input() } fn u64(&mut self) -> u64 { self.input() } fn u128(&mut self) -> u128 { self.input() } fn edge(&mut self) -> (usize, usize) { (self.usize1(), self.usize1()) } fn edges(&mut self, m : usize) -> Vec<(usize, usize)> { let mut e = Vec::with_capacity(m); for _ in 0..m { e.push(self.edge()); } e } fn wedge<T:std::str::FromStr>(&mut self) -> (usize, usize, T) { (self.usize1(), self.usize1(), self.input()) } fn wedges<T:std::str::FromStr>(&mut self, m : usize) -> Vec<(usize, usize, T)> { let mut e = Vec::with_capacity(m); for _ in 0..m { e.push(self.wedge()); } e } fn input<T>(&mut self) -> T where T: std::str::FromStr { if self.s.is_empty() { self.reload(); } if let Some(head) = self.s.pop_front() { head.parse::<T>().ok().unwrap() } else { panic!() } } fn tuple<T, U>(&mut self) -> (T, U) where T: std::str::FromStr, U: std::str::FromStr { (self.input(), self.input()) } fn vec<T>(&mut self, n: usize) -> Vec<T> where T: std::str::FromStr { if self.s.is_empty() { self.reload(); } self.s.drain(..n).map(|s| s.parse::<T>().ok().unwrap() ).collect::<Vec<T>>() } fn nvec<T>(&mut self) -> Vec<T> where T: std::str::FromStr { let n : usize = self.input(); self.vec(n) } fn chars(&mut self) -> Vec<char> { let s : String = self.input(); s.chars().collect() } fn bytes(&mut self) -> Vec<u8> { let s : String = self.input(); s.bytes().collect() } }
0