結果

問題 No.2888 Mamehinata
ユーザー Yukino DX.Yukino DX.
提出日時 2024-10-16 21:28:43
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 1,239 bytes
コンパイル時間 16,774 ms
コンパイル使用メモリ 379,188 KB
実行使用メモリ 25,868 KB
最終ジャッジ日時 2024-10-16 21:29:14
合計ジャッジ時間 28,149 ms
ジャッジサーバーID
(参考情報)
judge2 / 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,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 104 ms
6,784 KB
testcase_14 AC 200 ms
7,472 KB
testcase_15 AC 284 ms
15,104 KB
testcase_16 AC 339 ms
19,528 KB
testcase_17 AC 183 ms
7,040 KB
testcase_18 AC 91 ms
10,240 KB
testcase_19 AC 304 ms
20,352 KB
testcase_20 AC 272 ms
17,180 KB
testcase_21 AC 242 ms
16,908 KB
testcase_22 AC 242 ms
10,752 KB
testcase_23 AC 302 ms
13,952 KB
testcase_24 AC 356 ms
20,240 KB
testcase_25 AC 313 ms
19,084 KB
testcase_26 AC 374 ms
18,592 KB
testcase_27 AC 382 ms
13,444 KB
testcase_28 AC 48 ms
5,248 KB
testcase_29 AC 117 ms
9,728 KB
testcase_30 AC 322 ms
21,376 KB
testcase_31 AC 260 ms
18,196 KB
testcase_32 AC 177 ms
13,288 KB
testcase_33 AC 235 ms
16,872 KB
testcase_34 AC 195 ms
14,540 KB
testcase_35 AC 166 ms
12,668 KB
testcase_36 AC 347 ms
22,960 KB
testcase_37 AC 369 ms
23,680 KB
testcase_38 AC 94 ms
8,064 KB
testcase_39 AC 301 ms
19,328 KB
testcase_40 AC 373 ms
23,120 KB
testcase_41 AC 57 ms
5,632 KB
testcase_42 AC 299 ms
20,224 KB
testcase_43 AC 245 ms
20,948 KB
testcase_44 AC 270 ms
23,368 KB
testcase_45 AC 308 ms
25,868 KB
testcase_46 AC 39 ms
5,248 KB
testcase_47 AC 298 ms
22,560 KB
testcase_48 AC 169 ms
17,152 KB
testcase_49 AC 7 ms
5,248 KB
testcase_50 AC 20 ms
11,008 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 2 ms
5,248 KB
testcase_53 AC 4 ms
5,248 KB
testcase_54 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::VecDeque;

use proconio::{input, marker::Usize1};

fn main() {
    input! {
        n:usize,
        m:usize,
        uv:[(Usize1,Usize1);m],
    }

    let mut g = vec![vec![]; n];
    for &(u, v) in uv.iter() {
        g[u].push(v);
        g[v].push(u);
    }

    if g[0].is_empty() {
        for _ in 0..n {
            println!("0");
        }
        return;
    }

    let mut q = VecDeque::new();
    let mut dists = vec![n + 1; n];
    dists[0] = 0;
    q.push_back(0);
    while let Some(crr) = q.pop_front() {
        for &nxt in g[crr].iter() {
            if dists[nxt] != n + 1 {
                continue;
            }

            dists[nxt] = dists[crr] + 1;
            q.push_back(nxt);
        }
    }

    dists[0] = 2;
    let mut ans = vec![0; n];
    let mut add_odd = 0;
    let mut add_even = 0;
    dists.sort();
    let mut ind = 0;
    for i in 1..=n {
        while ind < n && dists[ind] == i {
            if i % 2 == 0 {
                add_even += 1;
            } else {
                add_odd += 1;
            }

            ind += 1;
        }

        ans[i - 1] = if i % 2 == 0 { add_even } else { add_odd };
    }

    for i in 0..n {
        println!("{}", ans[i]);
    }
}
0