結果

問題 No.2888 Mamehinata
ユーザー Nzt3Nzt3
提出日時 2024-09-14 22:21:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 837 bytes
コンパイル時間 2,583 ms
コンパイル使用メモリ 209,316 KB
実行使用メモリ 16,752 KB
最終ジャッジ日時 2024-09-14 22:21:14
合計ジャッジ時間 8,950 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 19 ms
7,168 KB
testcase_15 AC 75 ms
9,600 KB
testcase_16 AC 103 ms
13,184 KB
testcase_17 AC 15 ms
7,552 KB
testcase_18 AC 44 ms
6,016 KB
testcase_19 AC 114 ms
13,056 KB
testcase_20 AC 89 ms
11,392 KB
testcase_21 AC 89 ms
11,136 KB
testcase_22 AC 32 ms
9,216 KB
testcase_23 AC 46 ms
11,392 KB
testcase_24 AC 95 ms
14,336 KB
testcase_25 AC 74 ms
13,952 KB
testcase_26 AC 73 ms
13,696 KB
testcase_27 AC 38 ms
11,520 KB
testcase_28 AC 14 ms
5,376 KB
testcase_29 AC 36 ms
7,680 KB
testcase_30 AC 141 ms
14,080 KB
testcase_31 AC 84 ms
12,416 KB
testcase_32 AC 56 ms
9,728 KB
testcase_33 AC 77 ms
11,776 KB
testcase_34 AC 62 ms
10,368 KB
testcase_35 AC 50 ms
9,472 KB
testcase_36 AC 125 ms
15,104 KB
testcase_37 AC 132 ms
15,488 KB
testcase_38 AC 28 ms
6,784 KB
testcase_39 AC 104 ms
13,184 KB
testcase_40 AC 140 ms
15,360 KB
testcase_41 AC 17 ms
5,376 KB
testcase_42 AC 130 ms
13,568 KB
testcase_43 AC 74 ms
13,892 KB
testcase_44 AC 79 ms
15,088 KB
testcase_45 AC 96 ms
16,752 KB
testcase_46 AC 11 ms
5,376 KB
testcase_47 AC 76 ms
14,728 KB
testcase_48 AC 62 ms
10,588 KB
testcase_49 AC 10 ms
5,376 KB
testcase_50 AC 29 ms
5,888 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 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
constexpr int MOD=998244353;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define rep2(i,l,r) for(int i=(l);i<(int)(r);i++)

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,M;
  cin>>N>>M;
  vector G(N,vector(0,0));
  rep(i,M){
    int U,V;
    cin>>U>>V;
    --U,--V;
    G[U].push_back(V),G[V].push_back(U);
  }
  if(G[0].empty()){
    rep(i,N)cout<<"0\n";
    return 0;
  }
  vector ans(N+1,0),dist(N,N+2);
  queue<int>bfs;
  bfs.push(0);
  dist[0]=0;
  while(bfs.size()){
    int v=bfs.front();
    bfs.pop();
    for(auto i:G[v]){
      if(dist[i]>dist[v]+1){
        dist[i]=dist[v]+1;
        bfs.push(i);
      }
    }
  }
  for(auto i:dist)if(i<=N)ans[i]+=1;
  rep(i,N){
    if(i+2<=N)ans[i+2]+=ans[i];
  }
  rep(i,N)cout<<ans[i+1]<<'\n';
}
0