結果

問題 No.2888 Mamehinata
ユーザー hongrockhongrock
提出日時 2024-09-13 21:33:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 939 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 206,576 KB
実行使用メモリ 16,100 KB
最終ジャッジ日時 2024-09-13 21:33:45
合計ジャッジ時間 8,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,944 KB
testcase_01 AC 5 ms
8,960 KB
testcase_02 AC 5 ms
8,832 KB
testcase_03 AC 5 ms
8,832 KB
testcase_04 AC 6 ms
8,064 KB
testcase_05 AC 7 ms
8,960 KB
testcase_06 AC 6 ms
8,800 KB
testcase_07 AC 6 ms
8,960 KB
testcase_08 AC 6 ms
8,960 KB
testcase_09 AC 6 ms
8,832 KB
testcase_10 AC 5 ms
8,960 KB
testcase_11 AC 6 ms
7,936 KB
testcase_12 AC 5 ms
8,832 KB
testcase_13 AC 26 ms
10,112 KB
testcase_14 AC 24 ms
10,112 KB
testcase_15 AC 71 ms
11,904 KB
testcase_16 AC 85 ms
13,696 KB
testcase_17 AC 17 ms
9,088 KB
testcase_18 AC 42 ms
11,112 KB
testcase_19 AC 92 ms
13,764 KB
testcase_20 AC 83 ms
13,056 KB
testcase_21 AC 77 ms
12,928 KB
testcase_22 AC 30 ms
10,368 KB
testcase_23 AC 41 ms
11,648 KB
testcase_24 AC 86 ms
13,952 KB
testcase_25 AC 72 ms
13,312 KB
testcase_26 AC 65 ms
13,184 KB
testcase_27 AC 34 ms
11,188 KB
testcase_28 AC 17 ms
9,856 KB
testcase_29 AC 37 ms
11,264 KB
testcase_30 AC 96 ms
14,396 KB
testcase_31 AC 78 ms
13,448 KB
testcase_32 AC 54 ms
12,160 KB
testcase_33 AC 75 ms
13,056 KB
testcase_34 AC 60 ms
12,416 KB
testcase_35 AC 47 ms
12,032 KB
testcase_36 AC 120 ms
14,848 KB
testcase_37 AC 117 ms
15,232 KB
testcase_38 AC 31 ms
10,752 KB
testcase_39 AC 108 ms
14,336 KB
testcase_40 AC 119 ms
15,360 KB
testcase_41 AC 19 ms
10,024 KB
testcase_42 AC 98 ms
14,556 KB
testcase_43 AC 65 ms
14,524 KB
testcase_44 AC 70 ms
15,420 KB
testcase_45 AC 80 ms
16,100 KB
testcase_46 AC 13 ms
9,964 KB
testcase_47 AC 68 ms
15,160 KB
testcase_48 AC 62 ms
13,064 KB
testcase_49 AC 13 ms
9,472 KB
testcase_50 AC 32 ms
11,220 KB
testcase_51 AC 6 ms
8,960 KB
testcase_52 AC 5 ms
8,832 KB
testcase_53 AC 8 ms
9,088 KB
testcase_54 AC 4 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define pb emplace_back
#define mp make_pair
 
using ll = long long;
using pii = pair<int,int>;
 
constexpr int mod = 998244353;
constexpr int inf = 0x3f3f3f3f;
constexpr int N = 2e5 + 10;

int n, m, dep[N], cnt[N];
vector<int> V[N];

void _main(){
  int x, y;
  cin >> n >> m;
  while(m--){
    cin >> x >> y;
    V[x].pb(y);
    V[y].pb(x);
  }
  if(V[1].empty()){
    for(int i=1; i<=n; ++i) cout << "0\n";
    return;
  }
  memset(dep, -1, sizeof(dep));
  dep[1] = 0;
  queue<int> Q;
  Q.push(1);
  while(!Q.empty()){
    int x = Q.front(); Q.pop();
    ++cnt[dep[x]];
    for(int y : V[x]){
      if(dep[y] == -1){
        dep[y] = dep[x] + 1;
        Q.push(y);
      }
    }
  }
  int c0 = 0, c1 = 1;
  for(int i=1; i<=n; ++i){
    swap(c0, c1);
    c1 += cnt[i];
    cout << c1 << '\n';
  }
}

int main(){
  ios::sync_with_stdio(0);
  cin.tie(0); cout.tie(0);
  _main();
  return 0;
}
0