結果

問題 No.2888 Mamehinata
ユーザー HIcoderHIcoder
提出日時 2024-09-14 10:02:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,208 bytes
コンパイル時間 1,424 ms
コンパイル使用メモリ 126,092 KB
実行使用メモリ 16,860 KB
最終ジャッジ日時 2024-09-14 10:03:07
合計ジャッジ時間 15,721 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 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 57 ms
5,376 KB
testcase_14 AC 142 ms
7,424 KB
testcase_15 WA -
testcase_16 AC 380 ms
13,184 KB
testcase_17 WA -
testcase_18 AC 118 ms
6,016 KB
testcase_19 AC 401 ms
13,184 KB
testcase_20 AC 324 ms
11,520 KB
testcase_21 AC 321 ms
11,264 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 415 ms
14,464 KB
testcase_25 AC 379 ms
13,952 KB
testcase_26 AC 383 ms
13,824 KB
testcase_27 AC 318 ms
11,648 KB
testcase_28 AC 62 ms
5,376 KB
testcase_29 AC 155 ms
7,808 KB
testcase_30 AC 406 ms
14,336 KB
testcase_31 AC 352 ms
12,544 KB
testcase_32 AC 230 ms
9,728 KB
testcase_33 AC 309 ms
11,776 KB
testcase_34 AC 256 ms
10,496 KB
testcase_35 AC 219 ms
9,472 KB
testcase_36 AC 462 ms
15,232 KB
testcase_37 AC 469 ms
15,488 KB
testcase_38 AC 126 ms
6,784 KB
testcase_39 AC 393 ms
13,312 KB
testcase_40 AC 468 ms
15,360 KB
testcase_41 AC 75 ms
5,504 KB
testcase_42 AC 414 ms
13,568 KB
testcase_43 AC 324 ms
13,872 KB
testcase_44 AC 366 ms
15,188 KB
testcase_45 AC 414 ms
16,860 KB
testcase_46 AC 54 ms
5,376 KB
testcase_47 AC 356 ms
14,960 KB
testcase_48 AC 257 ms
10,692 KB
testcase_49 AC 23 ms
5,376 KB
testcase_50 AC 75 ms
5,888 KB
testcase_51 AC 5 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 12 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,int> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;

int main(){
    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);
    }

    queue<P> que;
    vector<int> dist(N,inf);
    dist[0]=0;
    que.push(P{0,0});//距離,頂点

    while(!que.empty()){
        auto [d,v]=que.front();
        que.pop();
        //dist[v]>d
        for(int to:G[v]){
            if(dist[to]==inf){
                dist[to]=d+1;
                que.push(P{d+1,to});
            }
        }
    }

    vector<int> cnt(N+1,0);//0~N
    for(int i=0;i<N;i++){
        if(dist[i]==inf) continue;
        cnt[dist[i]]++;
    }

    for(int i=2;i<=N;i++){
        cnt[i]+=cnt[i-2];
    }

    for(int i=1;i<=N;i++){
        cout<<cnt[i]<<endl;
    }



    

}
0