結果

問題 No.2888 Mamehinata
ユーザー hongrockhongrock
提出日時 2024-09-13 21:30:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 860 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 206,192 KB
実行使用メモリ 16,188 KB
最終ジャッジ日時 2024-09-13 21:30:25
合計ジャッジ時間 8,458 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
8,832 KB
testcase_01 AC 6 ms
8,960 KB
testcase_02 AC 6 ms
8,960 KB
testcase_03 AC 6 ms
8,832 KB
testcase_04 WA -
testcase_05 AC 6 ms
8,832 KB
testcase_06 AC 6 ms
8,832 KB
testcase_07 AC 6 ms
8,960 KB
testcase_08 AC 7 ms
8,832 KB
testcase_09 AC 6 ms
8,960 KB
testcase_10 AC 7 ms
8,960 KB
testcase_11 WA -
testcase_12 AC 7 ms
8,832 KB
testcase_13 AC 26 ms
10,240 KB
testcase_14 AC 22 ms
10,112 KB
testcase_15 WA -
testcase_16 AC 97 ms
13,440 KB
testcase_17 WA -
testcase_18 AC 45 ms
11,136 KB
testcase_19 AC 106 ms
13,824 KB
testcase_20 AC 89 ms
13,056 KB
testcase_21 AC 85 ms
12,928 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 95 ms
13,568 KB
testcase_25 AC 76 ms
13,312 KB
testcase_26 AC 77 ms
13,056 KB
testcase_27 AC 37 ms
11,008 KB
testcase_28 AC 18 ms
9,856 KB
testcase_29 AC 39 ms
11,264 KB
testcase_30 AC 117 ms
14,464 KB
testcase_31 AC 91 ms
13,568 KB
testcase_32 AC 59 ms
12,160 KB
testcase_33 AC 82 ms
13,184 KB
testcase_34 AC 70 ms
12,416 KB
testcase_35 AC 60 ms
11,904 KB
testcase_36 AC 138 ms
14,976 KB
testcase_37 AC 141 ms
15,104 KB
testcase_38 AC 36 ms
10,752 KB
testcase_39 AC 121 ms
14,336 KB
testcase_40 AC 150 ms
15,488 KB
testcase_41 AC 23 ms
9,984 KB
testcase_42 AC 126 ms
14,592 KB
testcase_43 AC 73 ms
14,528 KB
testcase_44 AC 80 ms
15,420 KB
testcase_45 AC 91 ms
16,188 KB
testcase_46 AC 16 ms
9,856 KB
testcase_47 AC 79 ms
15,036 KB
testcase_48 AC 79 ms
12,984 KB
testcase_49 AC 15 ms
9,344 KB
testcase_50 AC 34 ms
11,392 KB
testcase_51 AC 8 ms
8,960 KB
testcase_52 AC 7 ms
8,832 KB
testcase_53 AC 10 ms
9,088 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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