結果

問題 No.1995 CHIKA Road
ユーザー phsplsphspls
提出日時 2022-09-20 00:26:37
言語 Rust
(1.77.0)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 3,243 bytes
コンパイル時間 3,809 ms
コンパイル使用メモリ 169,828 KB
実行使用メモリ 53,036 KB
最終ジャッジ日時 2023-08-23 19:15:17
合計ジャッジ時間 7,500 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 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,376 KB
testcase_06 AC 12 ms
4,940 KB
testcase_07 AC 46 ms
12,348 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 53 ms
10,584 KB
testcase_11 AC 313 ms
53,036 KB
testcase_12 AC 133 ms
29,836 KB
testcase_13 AC 83 ms
19,684 KB
testcase_14 AC 87 ms
20,556 KB
testcase_15 AC 268 ms
47,340 KB
testcase_16 AC 20 ms
6,976 KB
testcase_17 AC 110 ms
23,076 KB
testcase_18 AC 195 ms
37,100 KB
testcase_19 AC 197 ms
37,144 KB
testcase_20 AC 95 ms
20,952 KB
testcase_21 AC 84 ms
19,684 KB
testcase_22 AC 189 ms
33,088 KB
testcase_23 AC 49 ms
12,748 KB
testcase_24 AC 161 ms
29,476 KB
testcase_25 AC 25 ms
7,848 KB
testcase_26 AC 55 ms
13,896 KB
testcase_27 AC 152 ms
28,620 KB
testcase_28 AC 79 ms
19,680 KB
testcase_29 AC 181 ms
36,216 KB
testcase_30 AC 23 ms
7,652 KB
testcase_31 AC 11 ms
4,848 KB
testcase_32 AC 31 ms
9,416 KB
testcase_33 AC 146 ms
28,220 KB
testcase_34 AC 13 ms
5,216 KB
testcase_35 AC 57 ms
13,368 KB
testcase_36 AC 58 ms
15,200 KB
testcase_37 AC 171 ms
31,668 KB
testcase_38 AC 114 ms
24,268 KB
testcase_39 AC 10 ms
4,548 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: field `n` is never read
 --> Main.rs:7:5
  |
6 | struct Dijkstra {
  |        -------- field in this struct
7 |     n: usize,
  |     ^
  |
  = note: `Dijkstra` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
  = note: `#[warn(dead_code)]` on by default

warning: associated function `reconstruct` is never used
  --> Main.rs:49:8
   |
49 |     fn reconstruct(&self, startpoint: usize, endpoint: usize) -> Vec<(usize, usize)> {
   |        ^^^^^^^^^^^

warning: 2 warnings emitted

ソースコード

diff #

use std::{cmp::Reverse, collections::{BinaryHeap, BTreeSet, HashMap}};

const INF: usize = 1usize << 60;

#[derive(Debug, Clone)]
struct Dijkstra {
    n: usize,
    pathcosts: Vec<Vec<(usize, usize)>>,
    pathcostsrev: Vec<Vec<(usize, usize)>>,
    costs: Vec<usize>
}

impl Dijkstra {
    fn new(n: usize) -> Self {
        Self {
              n: n
            , pathcosts: vec![vec![]; n]
            , pathcostsrev: vec![vec![]; n]
            , costs: vec![INF; n]
        }
    }

    fn pusha2b(&mut self, a: usize, b: usize, cost: usize) {
        self.pathcosts[a].push((cost, b));
        self.pathcostsrev[b].push((cost, a));
    }

    fn get_cost(&self, idx: usize) -> usize {
        self.costs[idx]
    }

    fn solve(&mut self, startpoint: usize) {
        let mut que = BinaryHeap::new();
        que.push(Reverse((0, startpoint)));
        self.costs[startpoint] = 0;
        while let Some(Reverse(p)) = que.pop() {
            let cost = p.0;
            let dest = p.1;
            if cost > self.costs[dest] { continue; }
            for &p2 in self.pathcosts[dest].iter() {
                if self.costs[dest] + p2.0 < self.costs[p2.1] {
                    self.costs[p2.1] = self.costs[dest] + p2.0;
                    que.push(Reverse((self.costs[p2.1], p2.1)));
                }
            }
        }
    }

    fn reconstruct(&self, startpoint: usize, endpoint: usize) -> Vec<(usize, usize)> {
        let mut ret = vec![];
        if self.costs[endpoint] == INF { return ret; }
        let mut current = endpoint;
        while current != startpoint {
            for &(cost, u) in self.pathcostsrev[current].iter() {
                if self.costs[current] == self.costs[u] + cost {
                    let prev = current;
                    current = u;
                    ret.push((current, prev));
                    break;
                }
            }
        }
        ret.reverse();
        ret
    }
}

fn main() {
    let mut nm = String::new();
    std::io::stdin().read_line(&mut nm).ok();
    let nm: Vec<usize> = nm.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nm[0];
    let m = nm[1];
    let mut lines = Vec::with_capacity(m);
    let mut used = BTreeSet::new();
    used.insert(0);
    used.insert(n-1);
    for _ in 0..m {
        let mut ab = String::new();
        std::io::stdin().read_line(&mut ab).ok();
        let ab: Vec<usize> = ab.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
        let a = ab[0]-1;
        let b = ab[1]-1;
        let dist = 2*b - 2*a - 1;
        lines.push((a, b, dist));
        used.insert(a);
        used.insert(b);
    }
    let mut mapping = HashMap::new();
    for (i, &v) in used.iter().enumerate() {
        mapping.insert(v, i);
    }
    let mut paths = Dijkstra::new(used.len());
    for &(u, v, w) in lines.iter() {
        paths.pusha2b(*mapping.get(&u).unwrap(), *mapping.get(&v).unwrap(), w)
    }
    let used = used.into_iter().collect::<Vec<usize>>();
    for i in 0..used.len()-1 {
        let u = used[i];
        let v = used[i+1];
        let dist = (v - u) * 2;
        paths.pusha2b(i, i+1, dist);
    }
    paths.solve(0);
    println!("{}", paths.get_cost(used.len()-1));
}
0