結果

問題 No.2888 Mamehinata
ユーザー HIcoderHIcoder
提出日時 2024-09-14 10:04:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 1,302 bytes
コンパイル時間 1,466 ms
コンパイル使用メモリ 127,504 KB
実行使用メモリ 16,856 KB
最終ジャッジ日時 2024-09-14 10:04:53
合計ジャッジ時間 15,705 ms
ジャッジサーバーID
(参考情報)
judge6 / 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 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 57 ms
5,376 KB
testcase_14 AC 146 ms
7,296 KB
testcase_15 AC 294 ms
10,496 KB
testcase_16 AC 390 ms
13,184 KB
testcase_17 AC 209 ms
8,576 KB
testcase_18 AC 118 ms
6,144 KB
testcase_19 AC 415 ms
13,184 KB
testcase_20 AC 338 ms
11,412 KB
testcase_21 AC 315 ms
11,352 KB
testcase_22 AC 268 ms
10,496 KB
testcase_23 AC 355 ms
12,996 KB
testcase_24 AC 415 ms
14,464 KB
testcase_25 AC 394 ms
13,876 KB
testcase_26 AC 392 ms
13,808 KB
testcase_27 AC 317 ms
11,648 KB
testcase_28 AC 63 ms
5,376 KB
testcase_29 AC 172 ms
7,680 KB
testcase_30 AC 426 ms
14,208 KB
testcase_31 AC 349 ms
12,416 KB
testcase_32 AC 246 ms
9,856 KB
testcase_33 AC 319 ms
11,776 KB
testcase_34 AC 267 ms
10,496 KB
testcase_35 AC 231 ms
9,600 KB
testcase_36 AC 483 ms
15,360 KB
testcase_37 AC 476 ms
15,600 KB
testcase_38 AC 131 ms
6,912 KB
testcase_39 AC 423 ms
13,184 KB
testcase_40 AC 481 ms
15,368 KB
testcase_41 AC 78 ms
5,376 KB
testcase_42 AC 417 ms
13,568 KB
testcase_43 AC 331 ms
13,872 KB
testcase_44 AC 374 ms
15,196 KB
testcase_45 AC 435 ms
16,856 KB
testcase_46 AC 55 ms
5,376 KB
testcase_47 AC 366 ms
14,964 KB
testcase_48 AC 266 ms
10,820 KB
testcase_49 AC 24 ms
5,376 KB
testcase_50 AC 76 ms
6,016 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 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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

    if(G[0].size()==0){
        for(int i=1;i<=N;i++){
            cnt[i]=0;
        }
    }

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



    

}
0