結果

問題 No.2888 Mamehinata
ユーザー noiminoimi
提出日時 2024-09-13 21:28:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 1,657 bytes
コンパイル時間 2,401 ms
コンパイル使用メモリ 209,608 KB
実行使用メモリ 16,752 KB
最終ジャッジ日時 2024-09-13 21:28:55
合計ジャッジ時間 14,224 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,376 KB
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 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 28 ms
5,376 KB
testcase_14 AC 130 ms
7,296 KB
testcase_15 AC 204 ms
9,728 KB
testcase_16 AC 308 ms
13,184 KB
testcase_17 AC 188 ms
7,808 KB
testcase_18 AC 63 ms
6,016 KB
testcase_19 AC 312 ms
13,056 KB
testcase_20 AC 242 ms
11,392 KB
testcase_21 AC 229 ms
11,136 KB
testcase_22 AC 227 ms
9,472 KB
testcase_23 AC 306 ms
11,648 KB
testcase_24 AC 359 ms
14,208 KB
testcase_25 AC 325 ms
13,952 KB
testcase_26 AC 329 ms
13,696 KB
testcase_27 AC 283 ms
11,648 KB
testcase_28 AC 50 ms
5,376 KB
testcase_29 AC 130 ms
7,680 KB
testcase_30 AC 331 ms
14,208 KB
testcase_31 AC 286 ms
12,416 KB
testcase_32 AC 186 ms
9,728 KB
testcase_33 AC 247 ms
11,776 KB
testcase_34 AC 201 ms
10,496 KB
testcase_35 AC 181 ms
9,472 KB
testcase_36 AC 369 ms
15,232 KB
testcase_37 AC 366 ms
15,616 KB
testcase_38 AC 98 ms
6,784 KB
testcase_39 AC 311 ms
13,056 KB
testcase_40 AC 377 ms
15,232 KB
testcase_41 AC 60 ms
5,376 KB
testcase_42 AC 333 ms
13,440 KB
testcase_43 AC 264 ms
13,892 KB
testcase_44 AC 285 ms
15,092 KB
testcase_45 AC 322 ms
16,752 KB
testcase_46 AC 43 ms
5,376 KB
testcase_47 AC 276 ms
14,856 KB
testcase_48 AC 194 ms
10,716 KB
testcase_49 AC 11 ms
5,376 KB
testcase_50 AC 30 ms
5,888 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 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define vi vector<int>
#define vl vector<ll>
#define ov4(a, b, c, d, name, ...) name
#define rep3(i, a, b, c) for(ll i = (a); i < (b); i += (c))
#define rep2(i, a, b) rep3(i, a, b, 1)
#define rep1(i, n) rep2(i, 0, n)
#define rep0(n) rep1(aaaaa, n)
#define rep(...) ov4(__VA_ARGS__, rep3, rep2, rep1, rep0)(__VA_ARGS__)
#define per(i, a, b) for(ll i = (a) - 1; i >= (b); i--)
#define fore(e, v) for(auto &&e : v)
#define all(a) begin(a), end(a)
#define si(a) (int)(size(a))
#define lb(v, x) (lower_bound(all(v), x) - begin(v))
#define eb emplace_back

template <typename T, typename S> bool chmin(T &a, const S &b) { return a > b ? a = b, 1 : 0; }
template <typename T, typename S> bool chmax(T &a, const S &b) { return a < b ? a = b, 1 : 0; }

const int INF = 1e9 + 100;
const ll INFL = 3e18 + 100;

#define i128 __int128_t

struct _ {
    _() { cin.tie(0)->sync_with_stdio(0), cout.tie(0); }
} __;

int main() {
    int n, m;
    cin >> n >> m;
    vector<vi> g(n);
    rep(m) {
        int x, y;
        cin >> x >> y;
        --x, --y;
        g[x].eb(y);
        g[y].eb(x);
    }

    if(empty(g[0])) {
        rep(i, n) cout << 0 << endl;
        exit(0);
    }
    vi d(n, INF);
    queue<int> q;
    q.emplace(0);
    d[0] = 0;
    while(!empty(q)) {
        int x = q.front();
        q.pop();
        fore(e, g[x]) if(chmin(d[e], d[x] + 1)) q.emplace(e);
    }

    vi cnt(n + 1);
    rep(i, n) {
        if(d[i] <= n) cnt[d[i]]++;
    }
    rep(i, 2, n + 1) cnt[i] += cnt[i - 2];
    rep(i, 1, n + 1) cout << cnt[i] << endl;
}
0