結果

問題 No.2888 Mamehinata
ユーザー GOTKAKOGOTKAKO
提出日時 2024-09-13 22:43:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 2,374 ms
コンパイル使用メモリ 209,372 KB
実行使用メモリ 15,860 KB
最終ジャッジ日時 2024-09-13 22:44:17
合計ジャッジ時間 8,358 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 AC 2 ms
5,376 KB
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 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 21 ms
5,376 KB
testcase_14 AC 21 ms
7,296 KB
testcase_15 AC 75 ms
10,496 KB
testcase_16 AC 102 ms
13,056 KB
testcase_17 AC 14 ms
8,680 KB
testcase_18 AC 41 ms
6,144 KB
testcase_19 AC 113 ms
13,056 KB
testcase_20 AC 92 ms
11,356 KB
testcase_21 AC 96 ms
11,108 KB
testcase_22 AC 31 ms
10,524 KB
testcase_23 AC 48 ms
12,928 KB
testcase_24 AC 95 ms
14,284 KB
testcase_25 AC 76 ms
13,920 KB
testcase_26 AC 73 ms
13,568 KB
testcase_27 AC 40 ms
11,648 KB
testcase_28 AC 15 ms
6,944 KB
testcase_29 AC 39 ms
7,552 KB
testcase_30 AC 122 ms
14,192 KB
testcase_31 AC 95 ms
12,344 KB
testcase_32 AC 58 ms
9,600 KB
testcase_33 AC 85 ms
11,776 KB
testcase_34 AC 65 ms
10,448 KB
testcase_35 AC 56 ms
9,344 KB
testcase_36 AC 126 ms
15,132 KB
testcase_37 AC 140 ms
15,580 KB
testcase_38 AC 31 ms
6,940 KB
testcase_39 AC 119 ms
13,116 KB
testcase_40 AC 155 ms
15,300 KB
testcase_41 AC 17 ms
6,944 KB
testcase_42 AC 118 ms
13,568 KB
testcase_43 AC 72 ms
13,256 KB
testcase_44 AC 81 ms
14,580 KB
testcase_45 AC 94 ms
15,860 KB
testcase_46 AC 12 ms
6,940 KB
testcase_47 AC 81 ms
14,216 KB
testcase_48 AC 71 ms
10,332 KB
testcase_49 AC 10 ms
6,940 KB
testcase_50 AC 30 ms
6,944 KB
testcase_51 AC 3 ms
6,940 KB
testcase_52 AC 2 ms
6,944 KB
testcase_53 AC 6 ms
6,944 KB
testcase_54 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

vector<int> BFS(vector<vector<int>> &Graph,int start){
    int N = Graph.size();
    vector<int> ret(N,-1);
    queue<int> Q;
    ret.at(start) = 0,Q.push(start);
    while(Q.size()){
        int pos = Q.front(); Q.pop();
        for(auto to : Graph.at(pos)){
            if(ret.at(to) != -1) continue;
            ret.at(to) = ret.at(pos)+1;
            Q.push(to);
        }
    }
    return ret;
}

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

    int N,M; cin >> N >> M;
    vector<vector<int>> Graph(N);
    for(int i=0; i<M; i++){
        int u,v; cin >> u >> v;
        u--; v--;
        Graph.at(u).push_back(v);
        Graph.at(v).push_back(u);
    }

    vector<int> dist = BFS(Graph,0);
    vector<int> rev(N+1);
    for(auto &d : dist) if(d != -1) rev.at(d)++;

    int one = 1,two = 0;
    if(Graph.at(0).size() == 0){
        for(int t=0; t<N; t++) cout << "0\n";
        return 0;
    }
    for(int i=1; i<=N; i++){
        if(i%2 == 0) one += rev.at(i),cout << one << "\n";
        else two += rev.at(i),cout << two << "\n"; 
    }
}
0