結果

問題 No.2888 Mamehinata
ユーザー tnakao0123tnakao0123
提出日時 2024-09-15 14:48:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 949 bytes
コンパイル時間 869 ms
コンパイル使用メモリ 60,544 KB
実行使用メモリ 15,908 KB
最終ジャッジ日時 2024-09-15 14:48:33
合計ジャッジ時間 7,302 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,808 KB
testcase_01 AC 5 ms
7,808 KB
testcase_02 AC 5 ms
7,808 KB
testcase_03 AC 5 ms
7,808 KB
testcase_04 AC 6 ms
7,808 KB
testcase_05 AC 5 ms
7,936 KB
testcase_06 AC 6 ms
7,936 KB
testcase_07 AC 5 ms
7,808 KB
testcase_08 AC 5 ms
7,808 KB
testcase_09 AC 5 ms
7,808 KB
testcase_10 AC 5 ms
7,808 KB
testcase_11 AC 5 ms
7,936 KB
testcase_12 AC 5 ms
7,936 KB
testcase_13 AC 27 ms
9,216 KB
testcase_14 AC 24 ms
9,344 KB
testcase_15 AC 77 ms
12,032 KB
testcase_16 AC 100 ms
13,184 KB
testcase_17 AC 24 ms
9,216 KB
testcase_18 AC 47 ms
10,112 KB
testcase_19 AC 105 ms
13,184 KB
testcase_20 AC 84 ms
12,288 KB
testcase_21 AC 88 ms
12,288 KB
testcase_22 AC 40 ms
10,880 KB
testcase_23 AC 56 ms
11,904 KB
testcase_24 AC 96 ms
13,312 KB
testcase_25 AC 82 ms
13,056 KB
testcase_26 AC 76 ms
12,800 KB
testcase_27 AC 44 ms
10,752 KB
testcase_28 AC 18 ms
8,832 KB
testcase_29 AC 39 ms
10,496 KB
testcase_30 AC 108 ms
14,080 KB
testcase_31 AC 92 ms
12,928 KB
testcase_32 AC 59 ms
11,648 KB
testcase_33 AC 82 ms
12,544 KB
testcase_34 AC 66 ms
11,904 KB
testcase_35 AC 60 ms
11,264 KB
testcase_36 AC 138 ms
14,720 KB
testcase_37 AC 144 ms
14,848 KB
testcase_38 AC 34 ms
9,984 KB
testcase_39 AC 108 ms
13,952 KB
testcase_40 AC 138 ms
15,104 KB
testcase_41 AC 22 ms
9,088 KB
testcase_42 AC 108 ms
14,080 KB
testcase_43 AC 77 ms
14,116 KB
testcase_44 AC 88 ms
15,008 KB
testcase_45 AC 89 ms
15,908 KB
testcase_46 AC 15 ms
8,960 KB
testcase_47 AC 80 ms
14,624 KB
testcase_48 AC 79 ms
12,400 KB
testcase_49 AC 14 ms
8,576 KB
testcase_50 AC 36 ms
10,112 KB
testcase_51 AC 7 ms
7,936 KB
testcase_52 AC 5 ms
7,936 KB
testcase_53 AC 9 ms
8,192 KB
testcase_54 AC 6 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2888.cc:  No.2888 Mamehinata - yukicoder
 */

#include<cstdio>
#include<vector>
#include<queue>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 200000;

/* typedef */

using vi = vector<int>;
using qi = queue<int>;

/* global variables */

vi nbrs[MAX_N];
int ds[MAX_N], cs[MAX_N + 1];

/* subroutines */

/* main */

int main() {
  int n, m;
  scanf("%d%d", &n, &m);
  for (int i = 0; i < m; i++) {
    int u, v;
    scanf("%d%d", &u, &v);
    u--, v--;
    nbrs[u].push_back(v);
    nbrs[v].push_back(u);
  }

  fill(ds, ds + n, -1);
  ds[0] = 0;
  qi q;
  q.push(0);

  while (! q.empty()) {
    int u = q.front(); q.pop();
    cs[ds[u]]++;
    for (auto v: nbrs[u])
      if (ds[v] < 0)
	ds[v] = ds[u] + 1, q.push(v);
  }

  int ss[2] = {(cs[1] > 0) ? 1 : 0, 0};
  for (int i = 1; i <= n; i++) {
    int p = (i & 1);
    ss[p] += cs[i];
    printf("%d\n", ss[p]);
  }
  
  return 0;
}
0