結果

問題 No.2888 Mamehinata
ユーザー haihamabossuhaihamabossu
提出日時 2024-09-13 21:50:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 992 bytes
コンパイル時間 2,526 ms
コンパイル使用メモリ 211,860 KB
実行使用メモリ 19,832 KB
最終ジャッジ日時 2024-09-13 21:50:35
合計ジャッジ時間 7,984 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,948 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 22 ms
6,944 KB
testcase_14 AC 18 ms
8,056 KB
testcase_15 AC 80 ms
13,056 KB
testcase_16 AC 90 ms
15,572 KB
testcase_17 AC 19 ms
9,708 KB
testcase_18 AC 42 ms
7,936 KB
testcase_19 AC 112 ms
16,112 KB
testcase_20 AC 88 ms
13,952 KB
testcase_21 AC 86 ms
13,824 KB
testcase_22 AC 33 ms
11,872 KB
testcase_23 AC 56 ms
14,576 KB
testcase_24 AC 87 ms
16,488 KB
testcase_25 AC 72 ms
15,796 KB
testcase_26 AC 69 ms
15,444 KB
testcase_27 AC 34 ms
13,300 KB
testcase_28 AC 15 ms
6,940 KB
testcase_29 AC 37 ms
8,576 KB
testcase_30 AC 115 ms
16,296 KB
testcase_31 AC 87 ms
14,280 KB
testcase_32 AC 54 ms
11,008 KB
testcase_33 AC 81 ms
13,568 KB
testcase_34 AC 64 ms
11,904 KB
testcase_35 AC 63 ms
10,752 KB
testcase_36 AC 117 ms
17,640 KB
testcase_37 AC 132 ms
17,920 KB
testcase_38 AC 29 ms
7,296 KB
testcase_39 AC 110 ms
14,424 KB
testcase_40 AC 136 ms
16,804 KB
testcase_41 AC 17 ms
6,940 KB
testcase_42 AC 110 ms
14,760 KB
testcase_43 AC 70 ms
16,328 KB
testcase_44 AC 75 ms
17,904 KB
testcase_45 AC 99 ms
19,832 KB
testcase_46 AC 12 ms
6,940 KB
testcase_47 AC 77 ms
17,540 KB
testcase_48 AC 69 ms
12,640 KB
testcase_49 AC 10 ms
6,944 KB
testcase_50 AC 30 ms
8,320 KB
testcase_51 AC 3 ms
6,940 KB
testcase_52 AC 2 ms
6,940 KB
testcase_53 AC 6 ms
6,940 KB
testcase_54 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const ll INF = 1e18;
void solve() {
  ll n, m;
  cin >> n >> m;
  vector g(n, vector<ll>());
  rep(mi, m) {
    ll u, v;
    cin >> u >> v, u--, v--;
    g[u].push_back(v);
    g[v].push_back(u);
  }
  vector<ll> dist(n, INF), cnt(n + 1, 0);
  dist[0] = 0;
  cnt[dist[0]] += 1;
  deque<ll> que;
  que.push_back(0);
  while (!que.empty()) {
    ll u = que.front();
    que.pop_front();
    for (const auto v : g[u]) {
      if (dist[v] <= dist[u] + 1)
        continue;
      dist[v] = dist[u] + 1;
      cnt[dist[v]] += 1;
      que.push_back(v);
    }
  }
  vector<ll> ans(2, 0);
  if (!g[0].empty())
    ans[0] += 1;
  for (ll i = 1; i <= n; i++) {
    ans[i % 2] += cnt[i];
    cout << ans[i % 2] << '\n';
  }
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0