結果

問題 No.2888 Mamehinata
ユーザー tnakao0123tnakao0123
提出日時 2024-09-15 14:45:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 931 bytes
コンパイル時間 762 ms
コンパイル使用メモリ 60,672 KB
実行使用メモリ 15,908 KB
最終ジャッジ日時 2024-09-15 14:45:14
合計ジャッジ時間 8,632 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,936 KB
testcase_01 AC 4 ms
7,808 KB
testcase_02 AC 4 ms
7,936 KB
testcase_03 AC 4 ms
7,808 KB
testcase_04 WA -
testcase_05 AC 4 ms
7,808 KB
testcase_06 AC 4 ms
7,936 KB
testcase_07 AC 4 ms
7,936 KB
testcase_08 AC 4 ms
7,808 KB
testcase_09 AC 4 ms
7,936 KB
testcase_10 AC 4 ms
7,808 KB
testcase_11 WA -
testcase_12 AC 4 ms
8,064 KB
testcase_13 AC 25 ms
9,216 KB
testcase_14 AC 22 ms
9,344 KB
testcase_15 WA -
testcase_16 AC 103 ms
13,056 KB
testcase_17 WA -
testcase_18 AC 48 ms
9,984 KB
testcase_19 AC 121 ms
13,296 KB
testcase_20 AC 100 ms
12,416 KB
testcase_21 AC 95 ms
12,416 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 104 ms
13,312 KB
testcase_25 AC 84 ms
13,120 KB
testcase_26 AC 82 ms
12,740 KB
testcase_27 AC 43 ms
10,880 KB
testcase_28 AC 17 ms
8,832 KB
testcase_29 AC 43 ms
10,328 KB
testcase_30 AC 118 ms
14,012 KB
testcase_31 AC 106 ms
12,928 KB
testcase_32 AC 63 ms
11,416 KB
testcase_33 AC 85 ms
12,544 KB
testcase_34 AC 70 ms
11,812 KB
testcase_35 AC 61 ms
11,264 KB
testcase_36 AC 137 ms
14,720 KB
testcase_37 AC 146 ms
14,848 KB
testcase_38 AC 34 ms
10,112 KB
testcase_39 AC 117 ms
13,952 KB
testcase_40 AC 166 ms
15,164 KB
testcase_41 AC 21 ms
9,216 KB
testcase_42 AC 118 ms
13,952 KB
testcase_43 AC 79 ms
14,112 KB
testcase_44 AC 85 ms
15,004 KB
testcase_45 AC 97 ms
15,908 KB
testcase_46 AC 14 ms
8,832 KB
testcase_47 AC 83 ms
14,620 KB
testcase_48 AC 77 ms
12,396 KB
testcase_49 AC 13 ms
8,528 KB
testcase_50 AC 36 ms
10,240 KB
testcase_51 AC 5 ms
7,936 KB
testcase_52 AC 4 ms
7,936 KB
testcase_53 AC 9 ms
8,092 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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] = {1, 0};
  for (int i = 1; i <= n; i++) {
    int p = (i & 1);
    ss[p] += cs[i];
    printf("%d\n", ss[p]);
  }
  
  return 0;
}
0