結果

問題 No.2888 Mamehinata
ユーザー naut3naut3
提出日時 2024-09-13 21:48:43
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,272 bytes
コンパイル時間 14,828 ms
コンパイル使用メモリ 379,060 KB
実行使用メモリ 22,424 KB
最終ジャッジ日時 2024-09-13 21:49:14
合計ジャッジ時間 21,106 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 68 ms
6,656 KB
testcase_14 AC 29 ms
8,224 KB
testcase_15 WA -
testcase_16 AC 90 ms
17,152 KB
testcase_17 WA -
testcase_18 AC 31 ms
9,728 KB
testcase_19 AC 97 ms
17,792 KB
testcase_20 AC 102 ms
15,488 KB
testcase_21 AC 81 ms
15,232 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 156 ms
18,348 KB
testcase_25 AC 116 ms
17,128 KB
testcase_26 AC 112 ms
17,856 KB
testcase_27 AC 50 ms
16,024 KB
testcase_28 AC 12 ms
5,376 KB
testcase_29 AC 33 ms
8,832 KB
testcase_30 AC 124 ms
19,200 KB
testcase_31 AC 91 ms
16,384 KB
testcase_32 AC 49 ms
12,032 KB
testcase_33 AC 70 ms
15,232 KB
testcase_34 AC 60 ms
13,184 KB
testcase_35 AC 52 ms
11,520 KB
testcase_36 AC 154 ms
20,736 KB
testcase_37 AC 194 ms
21,376 KB
testcase_38 AC 25 ms
7,424 KB
testcase_39 AC 128 ms
17,536 KB
testcase_40 AC 170 ms
20,864 KB
testcase_41 AC 14 ms
5,376 KB
testcase_42 AC 136 ms
18,048 KB
testcase_43 AC 82 ms
18,132 KB
testcase_44 AC 92 ms
19,916 KB
testcase_45 AC 104 ms
22,424 KB
testcase_46 AC 10 ms
5,376 KB
testcase_47 AC 78 ms
19,500 KB
testcase_48 AC 52 ms
14,976 KB
testcase_49 AC 6 ms
5,376 KB
testcase_50 AC 19 ms
11,008 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 1 ms
5,376 KB
testcase_53 AC 3 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case)]
#[allow(unused_imports)]
use proconio::{fastout, input, marker::*};

#[fastout]
fn main() {
    input! {
        N: usize, M: usize,
        edges: [(Usize1, Usize1); M],
    }

    let dist = {
        let mut graph = vec![vec![]; N];

        for (u, v) in edges {
            graph[u].push(v);
            graph[v].push(u);
        }

        let mut seen = vec![false; N];
        let mut dist = vec![usize::MAX; N];
        let mut q = std::collections::VecDeque::new();

        q.push_back(0);
        seen[0] = true;
        dist[0] = 0;

        while let Some(u) = q.pop_front() {
            for &v in graph[u].iter() {
                if seen[v] {
                    continue;
                }

                q.push_back(v);
                seen[v] = true;
                dist[v] = dist[u] + 1;
            }
        }

        dist
    };

    let mut cnt = vec![0u32; N + 1];

    for i in 0..N {
        if dist[i] == usize::MAX {
            continue;
        }
        cnt[dist[i]] += 1;
    }

    for i in 0..=N - 2 {
        cnt[i + 2] += cnt[i];
    }

    println!(
        "{}",
        cnt[1..]
            .iter()
            .map(|x| x.to_string())
            .collect::<Vec<_>>()
            .join("\n")
    );
}
0