結果

問題 No.812 Change of Class
ユーザー phsplsphspls
提出日時 2023-01-02 17:41:48
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 128 ms / 4,000 ms
コード長 1,751 bytes
コンパイル時間 11,360 ms
コンパイル使用メモリ 401,260 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-11-27 01:09:19
合計ジャッジ時間 16,913 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
7,936 KB
testcase_01 AC 7 ms
6,816 KB
testcase_02 AC 22 ms
6,816 KB
testcase_03 AC 48 ms
9,088 KB
testcase_04 AC 42 ms
8,064 KB
testcase_05 AC 128 ms
8,576 KB
testcase_06 AC 108 ms
7,424 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 114 ms
9,216 KB
testcase_10 AC 119 ms
9,216 KB
testcase_11 AC 8 ms
6,816 KB
testcase_12 AC 72 ms
8,832 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 83 ms
7,040 KB
testcase_16 AC 6 ms
6,820 KB
testcase_17 AC 73 ms
7,168 KB
testcase_18 AC 54 ms
6,816 KB
testcase_19 AC 64 ms
6,816 KB
testcase_20 AC 124 ms
8,960 KB
testcase_21 AC 53 ms
6,820 KB
testcase_22 AC 25 ms
6,816 KB
testcase_23 AC 5 ms
6,816 KB
testcase_24 AC 7 ms
6,816 KB
testcase_25 AC 20 ms
6,820 KB
testcase_26 AC 98 ms
7,936 KB
testcase_27 AC 89 ms
7,296 KB
testcase_28 AC 62 ms
6,820 KB
testcase_29 AC 16 ms
6,820 KB
testcase_30 AC 85 ms
7,040 KB
testcase_31 AC 69 ms
6,820 KB
testcase_32 AC 30 ms
6,820 KB
testcase_33 AC 84 ms
7,680 KB
testcase_34 AC 6 ms
6,816 KB
testcase_35 AC 15 ms
6,816 KB
testcase_36 AC 6 ms
6,816 KB
testcase_37 AC 39 ms
6,820 KB
testcase_38 AC 4 ms
6,816 KB
testcase_39 AC 40 ms
6,816 KB
testcase_40 AC 9 ms
6,816 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 82 ms
6,912 KB
testcase_43 AC 16 ms
6,820 KB
testcase_44 AC 58 ms
6,820 KB
testcase_45 AC 7 ms
6,820 KB
testcase_46 AC 14 ms
6,820 KB
testcase_47 AC 58 ms
6,820 KB
testcase_48 AC 60 ms
6,816 KB
testcase_49 AC 16 ms
6,816 KB
testcase_50 AC 1 ms
6,820 KB
testcase_51 AC 16 ms
6,816 KB
testcase_52 AC 31 ms
6,820 KB
testcase_53 AC 11 ms
6,816 KB
testcase_54 AC 9 ms
6,816 KB
testcase_55 AC 34 ms
8,064 KB
testcase_56 AC 40 ms
9,088 KB
testcase_57 AC 40 ms
9,600 KB
testcase_58 AC 21 ms
6,820 KB
testcase_59 AC 45 ms
10,368 KB
testcase_60 AC 1 ms
6,816 KB
testcase_61 AC 1 ms
6,820 KB
testcase_62 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::VecDeque;


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 paths = vec![vec![]; n];
    for _ in 0..m {
        let mut temp = String::new();
        std::io::stdin().read_line(&mut temp).ok();
        let temp: Vec<usize> = temp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
        let u = temp[0]-1;
        let v = temp[1]-1;
        paths[u].push(v);
        paths[v].push(u);
    }
    let mut q = String::new();
    std::io::stdin().read_line(&mut q).ok();
    let q: usize = q.trim().parse().unwrap();
    let queries = (0..q).map(|_| {
            let mut temp = String::new();
            std::io::stdin().read_line(&mut temp).ok();
            let temp: usize = temp.trim().parse().unwrap();
            temp-1
        })
        .collect::<Vec<_>>();

    for &i in queries.iter() {
        let mut checked = vec![false; n];
        checked[i] = true;
        let mut dist = 0usize;
        let mut deque = VecDeque::new(); 
        deque.push_back(i);
        loop {
            let limit = deque.len();
            for _ in 0..limit {
                let u = deque.pop_front().unwrap();
                for &v in paths[u].iter() {
                    if checked[v] { continue; }
                    checked[v] = true;
                    deque.push_back(v);
                }
            }
            if deque.is_empty() {
                break;
            }
            dist += 1;
        }
        println!("{} {}", checked.iter().filter(|&&v| v).count() - 1, (dist as f64).log2().ceil() as usize);
    }
}
0