結果

問題 No.2888 Mamehinata
ユーザー InTheBloomInTheBloom
提出日時 2024-09-13 21:45:08
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 1,651 bytes
コンパイル時間 1,168 ms
コンパイル使用メモリ 98,584 KB
実行使用メモリ 19,068 KB
最終ジャッジ日時 2024-09-13 21:45:31
合計ジャッジ時間 9,044 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 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 51 ms
5,376 KB
testcase_14 AC 37 ms
8,320 KB
testcase_15 AC 161 ms
9,728 KB
testcase_16 AC 179 ms
15,104 KB
testcase_17 AC 33 ms
7,552 KB
testcase_18 AC 96 ms
6,144 KB
testcase_19 AC 203 ms
14,824 KB
testcase_20 AC 167 ms
12,800 KB
testcase_21 AC 168 ms
12,544 KB
testcase_22 AC 64 ms
9,344 KB
testcase_23 AC 96 ms
11,264 KB
testcase_24 AC 168 ms
16,672 KB
testcase_25 AC 139 ms
16,364 KB
testcase_26 AC 138 ms
16,128 KB
testcase_27 AC 64 ms
13,968 KB
testcase_28 AC 27 ms
5,376 KB
testcase_29 AC 71 ms
8,704 KB
testcase_30 AC 206 ms
16,336 KB
testcase_31 AC 165 ms
14,208 KB
testcase_32 AC 108 ms
11,008 KB
testcase_33 AC 150 ms
13,452 KB
testcase_34 AC 121 ms
11,776 KB
testcase_35 AC 101 ms
10,624 KB
testcase_36 AC 234 ms
17,408 KB
testcase_37 AC 233 ms
17,792 KB
testcase_38 AC 56 ms
7,424 KB
testcase_39 AC 192 ms
14,976 KB
testcase_40 AC 238 ms
17,536 KB
testcase_41 AC 33 ms
6,144 KB
testcase_42 AC 199 ms
15,516 KB
testcase_43 AC 145 ms
15,660 KB
testcase_44 AC 163 ms
17,432 KB
testcase_45 AC 182 ms
19,068 KB
testcase_46 AC 22 ms
5,504 KB
testcase_47 AC 157 ms
17,128 KB
testcase_48 AC 135 ms
11,972 KB
testcase_49 AC 23 ms
5,376 KB
testcase_50 AC 76 ms
6,144 KB
testcase_51 AC 4 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 12 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>

using namespace std;
using ll = long long;

int main () {
    // i回目のイベントで深さiまでの頂点が影響を受ける。
    int N, M; cin >> N >> M;
    vector<vector<int>> graph(N);

    for (int i = 0; i < M; i++) {
        int u, v; cin >> u >> v;
        u--, v--;
        graph[u].push_back(v);
        graph[v].push_back(u);
    }

    // 頂点0が孤立しているときがコーナーケース
    if (graph[0].size() == 0) {
        for (int i = 0; i < N; i++) cout << 0 << "\n";
        return 0;
    }

    vector<int> dist(N, -1);
    dist[0] = 0;

    queue<int> q;
    q.push(0);

    while (!q.empty()) {
        auto pos = q.front(); q.pop();
        for (auto nex: graph[pos]) {
            if (dist[nex] == -1) {
                dist[nex] = dist[pos] + 1;
                q.push(nex);
            }
        }
    }


    vector<int> count(N + 1);
    for (int i = 0; i < N; i++) if (0 <= dist[i]) count[dist[i]]++;

    vector<int> acc_even(N + 1), acc_odd(N + 1);
    for (int i = 0; i <= N; i++) {
        if (0 <= i - 1) {
            acc_even[i] = acc_even[i - 1];
            acc_odd[i] = acc_odd[i - 1];
        }

        if (i % 2 == 0) {
            acc_even[i] += count[i];
        }

        if (i % 2 == 1) {
            acc_odd[i] += count[i];
        }
    }

    vector<int> ans(N + 1);
    for (int i = 1; i <= N; i++) {
        if (i % 2 == 0) {
            ans[i] = acc_even[i];
        }

        if (i % 2 == 1) {
            ans[i] = acc_odd[i];
        }
    }

    for (int i = 1; i <= N; i++) cout << ans[i] << "\n";

    return 0;
}
0