結果

問題 No.2888 Mamehinata
ユーザー noiminoimi
提出日時 2024-09-13 21:23:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,575 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 209,184 KB
実行使用メモリ 16,884 KB
最終ジャッジ日時 2024-09-13 21:23:59
合計ジャッジ時間 15,855 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 27 ms
5,376 KB
testcase_14 AC 127 ms
7,296 KB
testcase_15 WA -
testcase_16 AC 307 ms
13,056 KB
testcase_17 WA -
testcase_18 AC 65 ms
6,016 KB
testcase_19 AC 302 ms
13,056 KB
testcase_20 AC 243 ms
11,392 KB
testcase_21 AC 240 ms
11,136 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 373 ms
14,320 KB
testcase_25 AC 313 ms
13,748 KB
testcase_26 AC 316 ms
13,624 KB
testcase_27 AC 280 ms
11,648 KB
testcase_28 AC 50 ms
5,376 KB
testcase_29 AC 125 ms
7,552 KB
testcase_30 AC 328 ms
14,236 KB
testcase_31 AC 296 ms
12,416 KB
testcase_32 AC 179 ms
9,728 KB
testcase_33 AC 244 ms
11,776 KB
testcase_34 AC 203 ms
10,496 KB
testcase_35 AC 174 ms
9,472 KB
testcase_36 AC 357 ms
15,192 KB
testcase_37 AC 360 ms
15,616 KB
testcase_38 AC 125 ms
6,784 KB
testcase_39 AC 289 ms
13,056 KB
testcase_40 AC 373 ms
15,360 KB
testcase_41 AC 61 ms
5,376 KB
testcase_42 AC 310 ms
13,524 KB
testcase_43 AC 259 ms
13,764 KB
testcase_44 AC 287 ms
15,212 KB
testcase_45 AC 335 ms
16,884 KB
testcase_46 AC 43 ms
5,376 KB
testcase_47 AC 287 ms
14,728 KB
testcase_48 AC 189 ms
10,712 KB
testcase_49 AC 10 ms
5,376 KB
testcase_50 AC 30 ms
5,888 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 6 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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

    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