結果

問題 No.2888 Mamehinata
ユーザー tottoripapertottoripaper
提出日時 2024-09-13 22:03:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,113 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 208,628 KB
実行使用メモリ 16,756 KB
最終ジャッジ日時 2024-09-13 22:04:12
合計ジャッジ時間 13,787 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 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 28 ms
5,376 KB
testcase_14 AC 129 ms
7,296 KB
testcase_15 WA -
testcase_16 AC 305 ms
13,184 KB
testcase_17 WA -
testcase_18 AC 64 ms
6,016 KB
testcase_19 AC 314 ms
12,928 KB
testcase_20 AC 243 ms
11,264 KB
testcase_21 AC 241 ms
11,068 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 340 ms
14,300 KB
testcase_25 AC 323 ms
13,952 KB
testcase_26 AC 347 ms
13,736 KB
testcase_27 AC 279 ms
11,684 KB
testcase_28 AC 50 ms
5,376 KB
testcase_29 AC 129 ms
7,680 KB
testcase_30 AC 336 ms
14,208 KB
testcase_31 AC 295 ms
12,416 KB
testcase_32 AC 184 ms
9,728 KB
testcase_33 AC 246 ms
11,740 KB
testcase_34 AC 213 ms
10,496 KB
testcase_35 AC 176 ms
9,344 KB
testcase_36 AC 390 ms
15,232 KB
testcase_37 AC 380 ms
15,396 KB
testcase_38 AC 100 ms
6,784 KB
testcase_39 AC 308 ms
13,184 KB
testcase_40 AC 410 ms
15,360 KB
testcase_41 AC 61 ms
5,376 KB
testcase_42 AC 315 ms
13,560 KB
testcase_43 AC 257 ms
13,892 KB
testcase_44 AC 287 ms
15,348 KB
testcase_45 AC 327 ms
16,756 KB
testcase_46 AC 43 ms
5,376 KB
testcase_47 AC 277 ms
14,856 KB
testcase_48 AC 190 ms
10,712 KB
testcase_49 AC 10 ms
5,376 KB
testcase_50 AC 30 ms
5,760 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 6 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    int N, M;
    std::cin >> N >> M;

    std::vector<std::vector<int>> G(N + 1);
    for(int i=0;i<M;i++){
        int u, v;
        std::cin >> u >> v;

        G[u].emplace_back(v);
        G[v].emplace_back(u);
    }

    std::queue<int> queue;
    std::vector<int> dist(N + 1, -1);
    queue.emplace(1);
    dist[1] = 0;
    
    while(!queue.empty()){
        int v = queue.front();
        queue.pop();

        for(int w : G[v]){
            if(dist[w] == -1){
                queue.emplace(w);
                dist[w] = dist[v] + 1;
            }
        }
    }

    std::vector<int> count(N + 1, 0);
    for(int i=1;i<=N;i++){
        if(dist[i] != -1){
            count[dist[i]] += 1;
        }
    }

    int count_even = 1, count_odd = 0;
    for(int i=1;i<=N;i++){
        if(i % 2 == 1){
            count_odd += count[i];
            std::cout << count_odd << std::endl;
        }else{
            count_even += count[i];
            std::cout << count_even << std::endl;
        }
    }
}
0