結果

問題 No.2888 Mamehinata
ユーザー Yukino DX.Yukino DX.
提出日時 2024-10-16 21:16:57
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,130 bytes
コンパイル時間 14,309 ms
コンパイル使用メモリ 378,272 KB
実行使用メモリ 25,992 KB
最終ジャッジ日時 2024-10-16 21:17:28
合計ジャッジ時間 28,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 WA -
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 WA -
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 18 ms
6,784 KB
testcase_14 AC 106 ms
7,600 KB
testcase_15 WA -
testcase_16 AC 254 ms
19,396 KB
testcase_17 WA -
testcase_18 AC 49 ms
10,240 KB
testcase_19 AC 253 ms
20,320 KB
testcase_20 AC 200 ms
17,176 KB
testcase_21 AC 218 ms
17,036 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 296 ms
20,236 KB
testcase_25 AC 287 ms
19,084 KB
testcase_26 AC 279 ms
18,592 KB
testcase_27 AC 247 ms
13,440 KB
testcase_28 AC 46 ms
5,248 KB
testcase_29 AC 111 ms
9,728 KB
testcase_30 AC 404 ms
21,248 KB
testcase_31 AC 267 ms
18,068 KB
testcase_32 AC 188 ms
13,288 KB
testcase_33 AC 247 ms
16,872 KB
testcase_34 AC 176 ms
14,536 KB
testcase_35 AC 207 ms
12,792 KB
testcase_36 AC 312 ms
22,960 KB
testcase_37 AC 349 ms
23,556 KB
testcase_38 AC 89 ms
7,936 KB
testcase_39 AC 261 ms
19,376 KB
testcase_40 AC 320 ms
23,120 KB
testcase_41 AC 51 ms
5,632 KB
testcase_42 AC 284 ms
20,092 KB
testcase_43 AC 216 ms
20,952 KB
testcase_44 AC 241 ms
23,372 KB
testcase_45 AC 278 ms
25,992 KB
testcase_46 AC 36 ms
5,248 KB
testcase_47 AC 261 ms
22,816 KB
testcase_48 AC 154 ms
17,280 KB
testcase_49 AC 6 ms
5,248 KB
testcase_50 AC 18 ms
11,136 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 1 ms
5,248 KB
testcase_53 AC 3 ms
5,248 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
    }

    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