結果

問題 No.1473 おでぶなおばけさん
ユーザー maimai
提出日時 2021-04-22 02:34:13
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 2,998 bytes
コンパイル時間 13,056 ms
コンパイル使用メモリ 404,536 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-07-04 06:10:47
合計ジャッジ時間 17,364 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 128 ms
12,032 KB
testcase_03 AC 90 ms
10,240 KB
testcase_04 AC 67 ms
7,680 KB
testcase_05 AC 29 ms
6,944 KB
testcase_06 AC 132 ms
10,496 KB
testcase_07 AC 125 ms
12,416 KB
testcase_08 AC 174 ms
12,544 KB
testcase_09 AC 120 ms
12,544 KB
testcase_10 AC 49 ms
6,940 KB
testcase_11 AC 53 ms
7,552 KB
testcase_12 AC 50 ms
6,940 KB
testcase_13 AC 30 ms
6,944 KB
testcase_14 AC 22 ms
6,944 KB
testcase_15 AC 44 ms
6,944 KB
testcase_16 AC 47 ms
6,944 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 6 ms
6,944 KB
testcase_19 AC 42 ms
6,940 KB
testcase_20 AC 67 ms
9,344 KB
testcase_21 AC 83 ms
7,936 KB
testcase_22 AC 62 ms
10,240 KB
testcase_23 AC 54 ms
9,728 KB
testcase_24 AC 52 ms
8,832 KB
testcase_25 AC 110 ms
9,764 KB
testcase_26 AC 87 ms
9,856 KB
testcase_27 AC 35 ms
6,940 KB
testcase_28 AC 117 ms
12,288 KB
testcase_29 AC 88 ms
8,448 KB
testcase_30 AC 117 ms
9,472 KB
testcase_31 AC 100 ms
12,160 KB
testcase_32 AC 101 ms
10,752 KB
testcase_33 AC 63 ms
8,960 KB
testcase_34 AC 26 ms
6,940 KB
testcase_35 AC 37 ms
6,944 KB
testcase_36 AC 75 ms
6,944 KB
testcase_37 AC 66 ms
9,088 KB
testcase_38 AC 12 ms
6,944 KB
testcase_39 AC 47 ms
6,944 KB
testcase_40 AC 48 ms
6,940 KB
testcase_41 AC 42 ms
6,940 KB
testcase_42 AC 42 ms
6,940 KB
testcase_43 AC 55 ms
9,152 KB
testcase_44 AC 55 ms
9,156 KB
testcase_45 AC 55 ms
9,152 KB
testcase_46 AC 73 ms
8,064 KB
testcase_47 AC 101 ms
9,344 KB
testcase_48 AC 98 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::{collections::*, io::Read};

fn take_token<R: std::io::BufRead>(cin: &mut R) -> String {
    cin.bytes()
        .map(|c| c.unwrap() as char)
        .skip_while(|c| c.is_whitespace())
        .take_while(|c| !c.is_whitespace())
        .collect::<String>()
}
#[allow(unused)]
macro_rules! scan {
    ($io:expr => $t:ty) => (take_token(&mut $io).parse::<$t>().unwrap());
    ($io:expr => $t:tt * $n:expr) => ((0..$n).map(|_| scan!($io => $t)).collect::<Vec<_>>());
    ($io:expr => $($t:tt),*) => (($(scan!($io => $t)),*));
    ($io:expr => $($t:tt),* * $n:expr) => ((0..$n).map(|_| ($(scan!($io => $t)),*)).collect::<Vec<_>>());
}

struct Graph<T: Clone = ()>(Vec<Vec<(usize, T)>>);

impl<T: Clone> Graph<T> {
    fn to<'a>(&self, i: usize) -> &Vec<(usize, T)> {
        &(self.0)[i]
    }
}

struct GraphBuilder<T: Clone = ()>(Graph<T>);

impl<T: Clone> GraphBuilder<T> {
    fn new(n: usize) -> Self {
        Self(Graph::<T>(vec![Vec::<(usize, T)>::new(); n]))
    }
    fn connect(&mut self, u: usize, v: usize, item: T) {
        (self.0 .0)[u].push((v, item.clone()));
        (self.0 .0)[v].push((u, item));
    }
    fn build(self) -> Graph<T> {
        self.0
    }
}
// macro_rules! binary_search {
//     ($ok:expr, $ng:expr, $m:pat => $b:expr) => {{
//         let mut (ok, ng) = ($ok, $ng);
//         while (ok - ng).abs() > 1 {
//             let $m = (ok + ng) / 2;
//             if $b {
//                 ok = $m;
//             } else {
//                 ng = $m;
//             }
//         }
//         ok
//     }};
// }

fn main() {
    solve(std::io::stdin().lock())
}

fn calc(graph: &Graph<i32>, n: usize, k: i32) -> Option<i32> {
    let mut visited = vec![0; n as usize];
    let mut que = VecDeque::<usize>::new();
    que.push_back(0);
    while let Some(v) = que.pop_front() {
        let d = visited[v];
        if v == n - 1 {
            return Some(d);
        }
        for (v2, cap) in graph.to(v).iter() {
            if *cap < k || visited[*v2] > 0 {
                continue;
            }
            visited[*v2] = d + 1;
            que.push_back(*v2);
        }
    }
    None
}

fn solve<R: std::io::BufRead>(mut cin: R) {
    let (n, m) = scan!(cin => i32, i32);
    let mut builder = GraphBuilder::<i32>::new(n as usize);
    for _ in 0..m {
        let (u, v, m) = scan!(cin => i32, i32, i32);
        builder.connect((u - 1) as usize, (v - 1) as usize, m);
    }
    let graph = builder.build();
    let k = {
        let mut ok = 0 as i32;
        let mut ng = i32::max_value() / 2;
        while (ok - ng).abs() > 1 {
            let m = (ok + ng) / 2;
            if calc(&graph, n as usize, m).is_some() {
                ok = m;
            } else {
                ng = m;
            }
        }
        ok
    };
    // let k =
    //     binary_search!(0 as i32, i32::max_value()/2, k => calc(&graph, n as usize, k).is_some());

    println!("{} {}", k, calc(&graph, n as usize, k).unwrap());
    // panic!("non-connective");
}
0