結果
| 問題 | 
                            No.867 避難経路
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2021-10-28 23:20:53 | 
| 言語 | Rust  (1.83.0 + proconio)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 3,123 bytes | 
| コンパイル時間 | 13,236 ms | 
| コンパイル使用メモリ | 389,960 KB | 
| 実行使用メモリ | 126,672 KB | 
| 最終ジャッジ日時 | 2024-10-07 08:15:42 | 
| 合計ジャッジ時間 | 24,752 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | -- * 3 | 
| other | WA * 15 TLE * 1 -- * 25 | 
ソースコード
#[allow(unused_imports)]
use std::cmp::*;
#[allow(unused_imports)]
use std::collections::*;
use std::io::{Write, BufWriter};
// 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),* )) => { ($(read_value!($next, $t)),*) };
    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };
    ($next:expr, chars) => {
        read_value!($next, String).chars().collect::<Vec<char>>()
    };
    ($next:expr, usize1) => (read_value!($next, usize) - 1);
    ($next:expr, [ $t:tt ]) => {{
        let len = read_value!($next, usize);
        read_value!($next, [$t; len])
    }};
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}
fn find_dist(a: &[Vec<i32>], gx: usize, gy: usize, k: i32) -> Vec<Vec<i32>> {
    let n = a.len();
    let m = a[0].len();
    const INF: i32 = 1 << 30;
    let mut que = BinaryHeap::new();
    que.push((Reverse(0), gx, gy));
    let mut dist = vec![vec![INF; m]; n];
    let dxy = [(0i32, 1i32), (1, 0), (0, -1), (-1, 0)];
    while let Some((Reverse(d), x, y)) = que.pop() {
        if dist[x][y] <= d {
            continue;
        }
        dist[x][y] = d;
        for &(dx, dy) in &dxy {
            let nx = (x as i32 + dx) as usize;
            let ny = (y as i32 + dy) as usize;
            if nx >= n || ny >= m { continue; }
            que.push((Reverse(d + k + a[nx][ny]), nx, ny));
        }
    }
    dist
}
// Tags: exploit-small-constraints
// In this problem K is essentially at most 710
fn main() {
    let out = std::io::stdout();
    let mut out = BufWriter::new(out.lock());
    macro_rules! puts {($($format:tt)*) => (let _ = write!(out,$($format)*););}
    const KLIM: usize = 711;
    input! {
        h: usize, w: usize,
        gx: usize1, gy: usize1,
        a: [[i32; w]; h],
        q: usize,
        xyk: [(usize1, usize1, i64); q],
    }
    let mut dist = vec![vec![]; KLIM];
    for i in 0..KLIM {
        dist[i] = find_dist(&a, gx, gy, i as i32 * i as i32);
    }
    for (x, y, k) in xyk {
        let d;
        if k >= KLIM as i64 {
            let tmp = dist[KLIM - 1][x][y];
            let q = tmp / (KLIM - 1) as i32;
            let r = tmp % (KLIM - 1) as i32;
            d = q as i64 * k * k + r as i64;
            
        } else {
            d = dist[k as usize][x][y] as i64;
        }
        puts!("{}\n", d + k * k + a[x][y] as i64);
    }
}