結果

問題 No.1868 Teleporting Cyanmond
ユーザー phsplsphspls
提出日時 2022-09-25 16:45:18
言語 Rust
(1.77.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 2,456 bytes
コンパイル時間 1,006 ms
コンパイル使用メモリ 154,448 KB
実行使用メモリ 24,336 KB
最終ジャッジ日時 2023-08-24 00:59:05
合計ジャッジ時間 3,226 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 49 ms
21,772 KB
testcase_04 AC 31 ms
16,468 KB
testcase_05 AC 3 ms
4,376 KB
testcase_06 AC 8 ms
5,368 KB
testcase_07 AC 25 ms
11,784 KB
testcase_08 AC 14 ms
7,856 KB
testcase_09 AC 21 ms
10,652 KB
testcase_10 AC 45 ms
20,008 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 12 ms
6,720 KB
testcase_13 AC 20 ms
11,792 KB
testcase_14 AC 38 ms
22,436 KB
testcase_15 AC 26 ms
15,664 KB
testcase_16 AC 5 ms
4,376 KB
testcase_17 AC 8 ms
5,964 KB
testcase_18 AC 38 ms
24,312 KB
testcase_19 AC 37 ms
24,244 KB
testcase_20 AC 38 ms
24,316 KB
testcase_21 AC 37 ms
24,280 KB
testcase_22 AC 37 ms
24,244 KB
testcase_23 AC 34 ms
24,336 KB
testcase_24 AC 35 ms
24,256 KB
testcase_25 AC 35 ms
24,264 KB
testcase_26 AC 34 ms
24,336 KB
testcase_27 AC 34 ms
24,292 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};

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 n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();
    let mut r = String::new();
    std::io::stdin().read_line(&mut r).ok();
    let r: Vec<usize> = r.trim().split_whitespace().map(|s| s.parse::<usize>().unwrap()-1).collect();

    let mut dijkstra = Dijkstra::new(n);
    for i in 0..n-1 {
        dijkstra.pusha2b(i, r[i], 1);
        dijkstra.pusha2b(i+1, i, 0);
    }
    dijkstra.solve(0);
    println!("{}", dijkstra.get_cost(n-1));
}
0