結果

問題 No.2888 Mamehinata
ユーザー karinohitokarinohito
提出日時 2024-09-13 21:27:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 875 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 209,596 KB
実行使用メモリ 16,756 KB
最終ジャッジ日時 2024-09-13 21:27:12
合計ジャッジ時間 8,813 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 203 ms
9,524 KB
testcase_16 AC 93 ms
13,144 KB
testcase_17 AC 186 ms
7,408 KB
testcase_18 AC 41 ms
6,016 KB
testcase_19 AC 95 ms
13,004 KB
testcase_20 AC 110 ms
11,520 KB
testcase_21 AC 83 ms
11,008 KB
testcase_22 AC 226 ms
9,324 KB
testcase_23 AC 286 ms
11,296 KB
testcase_24 AC 91 ms
14,336 KB
testcase_25 AC 69 ms
13,952 KB
testcase_26 AC 75 ms
13,720 KB
testcase_27 AC 42 ms
11,664 KB
testcase_28 AC 15 ms
6,944 KB
testcase_29 AC 36 ms
7,552 KB
testcase_30 AC 114 ms
14,220 KB
testcase_31 AC 84 ms
12,288 KB
testcase_32 AC 56 ms
9,728 KB
testcase_33 AC 82 ms
11,648 KB
testcase_34 AC 61 ms
10,368 KB
testcase_35 AC 52 ms
9,344 KB
testcase_36 AC 118 ms
15,188 KB
testcase_37 AC 121 ms
15,544 KB
testcase_38 AC 29 ms
6,940 KB
testcase_39 AC 107 ms
13,156 KB
testcase_40 AC 137 ms
15,296 KB
testcase_41 AC 17 ms
6,940 KB
testcase_42 AC 97 ms
13,616 KB
testcase_43 AC 68 ms
13,892 KB
testcase_44 AC 76 ms
15,216 KB
testcase_45 AC 87 ms
16,756 KB
testcase_46 AC 12 ms
6,944 KB
testcase_47 AC 73 ms
14,988 KB
testcase_48 AC 66 ms
10,716 KB
testcase_49 AC 10 ms
6,940 KB
testcase_50 AC 30 ms
6,940 KB
testcase_51 AC 3 ms
6,940 KB
testcase_52 AC 2 ms
6,944 KB
testcase_53 AC 6 ms
6,940 KB
testcase_54 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int N,M;
    cin>>N>>M;
    vector<vector<int>> G(N);
    for(int i=0;i<M;i++){
        int u,v;
        cin>>u>>v;
        u--;v--;
        G[u].push_back(v);
        G[v].push_back(u);
    }
    if(G[0].size()==0){
        for(int i=0;i<N;i++)cout<<0<<endl;
        return 0;
    }
    vector<int> D(N,1e9);
    queue<int> Q;
    Q.push(0);
    D[0]=0;
    while(!Q.empty()){
        int p=Q.front();
        Q.pop();
        for(int v:G[p]){
            if(D[v]<=D[p]+1)continue;
            D[v]=D[p]+1;
            Q.push(v);
        }
    }
    vector<int> AN(N+1,0);
    for(int i=0;i<N;i++){
        if(D[i]<=N)AN[D[i]]++;
    }
    for(int i=1;i<=N;i++){
        if(i>=2)AN[i]+=AN[i-2];
        cout<<AN[i]<<"\n";
    }
}
0