結果

問題 No.2888 Mamehinata
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-13 23:57:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 496 ms / 2,000 ms
コード長 1,594 bytes
コンパイル時間 3,184 ms
コンパイル使用メモリ 255,824 KB
実行使用メモリ 22,568 KB
最終ジャッジ日時 2024-09-13 23:58:00
合計ジャッジ時間 17,738 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 67 ms
11,392 KB
testcase_14 AC 146 ms
8,192 KB
testcase_15 AC 311 ms
18,304 KB
testcase_16 AC 399 ms
19,076 KB
testcase_17 AC 204 ms
7,552 KB
testcase_18 AC 135 ms
15,232 KB
testcase_19 AC 412 ms
21,256 KB
testcase_20 AC 345 ms
18,816 KB
testcase_21 AC 337 ms
18,944 KB
testcase_22 AC 259 ms
10,196 KB
testcase_23 AC 344 ms
12,924 KB
testcase_24 AC 457 ms
18,724 KB
testcase_25 AC 385 ms
17,480 KB
testcase_26 AC 387 ms
16,716 KB
testcase_27 AC 341 ms
12,160 KB
testcase_28 AC 64 ms
6,940 KB
testcase_29 AC 166 ms
10,752 KB
testcase_30 AC 439 ms
20,700 KB
testcase_31 AC 388 ms
17,920 KB
testcase_32 AC 246 ms
13,824 KB
testcase_33 AC 330 ms
16,896 KB
testcase_34 AC 273 ms
14,848 KB
testcase_35 AC 260 ms
13,568 KB
testcase_36 AC 479 ms
22,068 KB
testcase_37 AC 496 ms
22,568 KB
testcase_38 AC 161 ms
9,344 KB
testcase_39 AC 400 ms
18,768 KB
testcase_40 AC 493 ms
22,004 KB
testcase_41 AC 80 ms
7,424 KB
testcase_42 AC 438 ms
19,312 KB
testcase_43 AC 329 ms
18,736 KB
testcase_44 AC 373 ms
19,456 KB
testcase_45 AC 417 ms
21,172 KB
testcase_46 AC 54 ms
6,940 KB
testcase_47 AC 362 ms
18,448 KB
testcase_48 AC 279 ms
18,724 KB
testcase_49 AC 27 ms
8,064 KB
testcase_50 AC 92 ms
17,536 KB
testcase_51 AC 6 ms
6,940 KB
testcase_52 AC 4 ms
6,940 KB
testcase_53 AC 14 ms
6,940 KB
testcase_54 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template <class T>
struct Edge {
    Edge() {}
    Edge(int to_, T cost_) : to(to_), cost(cost_) {}
    Edge(int from_, int to_, T cost_) : from(from_), to(to_), cost(cost_) {}
    Edge(int from_, int to_, T cost_, int idx_) : from(from_), to(to_), cost(cost_), idx(idx_) {}
    
    int from, to;
    T cost;
    int idx;
};

template <class T> using Graph = vector<vector<Edge<T>>>;
using graph = Graph<long long>;
using edge = Edge<long long>;

#define add emplace_back

int main() {
    int n, m;
    cin >> n >> m;
    graph g(n);
    for (int i = 0; i < m; i++) {
        int u, v;
        cin >> u >> v;
        u--;
        v--;
        g[u].add(v, 1LL);
        g[v].add(u, 1LL);
    }
    if (g[0].size() == 0) {
        for (int i = 0; i < n; i++) {
            cout << 0 << endl;
        }
        return 0;
    }
    vector<int> d(n, -1);
    d[0] = 0;
    queue<int> q;
    q.push(0);
    while (!q.empty()) {
        int v = q.front();
        q.pop();
        for (auto e : g[v]) {
            int nv = e.to;
            if (d[nv] != -1) {
                continue;
            }
            d[nv] = d[v] + 1;
            q.push(nv);
        }
    }
    vector<int> cnt(200010, 0);
    for (int i = 0; i < n; i++) {
        if (d[i] >= 0) {
            cnt[d[i]]++;
        }
    }
    int even = cnt[0], odd = 0;
    for (int i = 1; i <= n; i++) {
        if (i % 2 == 0) {
            even += cnt[i];
            cout << even << endl;
        } else {
            odd += cnt[i];
            cout << odd << endl;
        }
    }
}
0