結果

問題 No.2888 Mamehinata
ユーザー haihamabossuhaihamabossu
提出日時 2024-09-13 21:35:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 969 bytes
コンパイル時間 2,572 ms
コンパイル使用メモリ 209,936 KB
実行使用メモリ 19,832 KB
最終ジャッジ日時 2024-09-13 21:35:41
合計ジャッジ時間 8,955 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 23 ms
6,272 KB
testcase_14 AC 20 ms
8,064 KB
testcase_15 WA -
testcase_16 AC 107 ms
15,360 KB
testcase_17 WA -
testcase_18 AC 44 ms
7,808 KB
testcase_19 AC 120 ms
15,976 KB
testcase_20 AC 107 ms
13,824 KB
testcase_21 AC 101 ms
13,824 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 108 ms
16,512 KB
testcase_25 AC 80 ms
15,872 KB
testcase_26 AC 80 ms
15,616 KB
testcase_27 AC 38 ms
13,312 KB
testcase_28 AC 15 ms
5,376 KB
testcase_29 AC 37 ms
8,576 KB
testcase_30 AC 131 ms
16,512 KB
testcase_31 AC 96 ms
14,336 KB
testcase_32 AC 57 ms
10,880 KB
testcase_33 AC 84 ms
13,440 KB
testcase_34 AC 66 ms
11,776 KB
testcase_35 AC 58 ms
10,752 KB
testcase_36 AC 134 ms
17,664 KB
testcase_37 AC 137 ms
18,048 KB
testcase_38 AC 29 ms
7,296 KB
testcase_39 AC 111 ms
14,336 KB
testcase_40 AC 170 ms
16,896 KB
testcase_41 AC 18 ms
5,632 KB
testcase_42 AC 123 ms
14,848 KB
testcase_43 AC 72 ms
16,324 KB
testcase_44 AC 80 ms
17,776 KB
testcase_45 AC 101 ms
19,832 KB
testcase_46 AC 11 ms
5,376 KB
testcase_47 AC 80 ms
17,544 KB
testcase_48 AC 70 ms
12,636 KB
testcase_49 AC 11 ms
5,376 KB
testcase_50 AC 30 ms
8,320 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 6 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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