結果

問題 No.2888 Mamehinata
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-13 21:35:48
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,463 bytes
コンパイル時間 3,313 ms
コンパイル使用メモリ 254,892 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2024-09-13 21:36:08
合計ジャッジ時間 17,940 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 69 ms
11,392 KB
testcase_14 AC 152 ms
8,192 KB
testcase_15 WA -
testcase_16 AC 406 ms
19,072 KB
testcase_17 WA -
testcase_18 AC 142 ms
15,232 KB
testcase_19 AC 427 ms
21,376 KB
testcase_20 AC 386 ms
18,816 KB
testcase_21 AC 343 ms
18,944 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 434 ms
18,688 KB
testcase_25 AC 401 ms
17,408 KB
testcase_26 AC 427 ms
16,768 KB
testcase_27 AC 308 ms
12,160 KB
testcase_28 AC 63 ms
6,656 KB
testcase_29 AC 184 ms
10,880 KB
testcase_30 AC 439 ms
20,608 KB
testcase_31 AC 387 ms
18,048 KB
testcase_32 AC 252 ms
13,824 KB
testcase_33 AC 339 ms
16,896 KB
testcase_34 AC 291 ms
14,848 KB
testcase_35 AC 238 ms
13,440 KB
testcase_36 AC 483 ms
22,144 KB
testcase_37 AC 552 ms
22,656 KB
testcase_38 AC 134 ms
9,344 KB
testcase_39 AC 420 ms
18,816 KB
testcase_40 AC 511 ms
22,016 KB
testcase_41 AC 80 ms
7,296 KB
testcase_42 AC 427 ms
19,456 KB
testcase_43 AC 331 ms
17,072 KB
testcase_44 AC 405 ms
18,652 KB
testcase_45 AC 428 ms
20,572 KB
testcase_46 AC 54 ms
6,180 KB
testcase_47 AC 365 ms
18,416 KB
testcase_48 AC 281 ms
18,460 KB
testcase_49 AC 28 ms
8,064 KB
testcase_50 AC 93 ms
17,408 KB
testcase_51 AC 6 ms
5,376 KB
testcase_52 AC 4 ms
5,376 KB
testcase_53 AC 14 ms
5,504 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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