結果

問題 No.2888 Mamehinata
ユーザー 👑 seekworserseekworser
提出日時 2024-08-31 12:10:27
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 977 bytes
コンパイル時間 3,201 ms
コンパイル使用メモリ 254,700 KB
実行使用メモリ 16,860 KB
最終ジャッジ日時 2024-09-07 09:47:56
合計ジャッジ時間 11,611 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 51 ms
6,940 KB
testcase_14 AC 34 ms
7,296 KB
testcase_15 AC 157 ms
9,600 KB
testcase_16 AC 176 ms
13,188 KB
testcase_17 AC 23 ms
7,532 KB
testcase_18 AC 93 ms
6,944 KB
testcase_19 AC 196 ms
12,968 KB
testcase_20 AC 156 ms
11,352 KB
testcase_21 AC 160 ms
11,136 KB
testcase_22 AC 56 ms
9,344 KB
testcase_23 AC 87 ms
11,432 KB
testcase_24 AC 167 ms
14,388 KB
testcase_25 AC 141 ms
14,036 KB
testcase_26 AC 134 ms
13,664 KB
testcase_27 AC 64 ms
11,676 KB
testcase_28 AC 26 ms
6,940 KB
testcase_29 AC 70 ms
7,808 KB
testcase_30 AC 202 ms
14,160 KB
testcase_31 AC 164 ms
12,416 KB
testcase_32 AC 107 ms
9,728 KB
testcase_33 AC 147 ms
11,692 KB
testcase_34 AC 122 ms
10,496 KB
testcase_35 AC 103 ms
9,580 KB
testcase_36 AC 225 ms
15,316 KB
testcase_37 AC 230 ms
15,492 KB
testcase_38 AC 57 ms
6,940 KB
testcase_39 AC 192 ms
13,184 KB
testcase_40 AC 245 ms
15,376 KB
testcase_41 AC 32 ms
6,940 KB
testcase_42 AC 194 ms
13,520 KB
testcase_43 AC 139 ms
14,000 KB
testcase_44 AC 159 ms
15,188 KB
testcase_45 AC 175 ms
16,860 KB
testcase_46 AC 22 ms
6,944 KB
testcase_47 AC 153 ms
14,832 KB
testcase_48 AC 136 ms
10,696 KB
testcase_49 AC 23 ms
6,944 KB
testcase_50 AC 75 ms
6,944 KB
testcase_51 AC 4 ms
6,944 KB
testcase_52 AC 2 ms
6,944 KB
testcase_53 AC 12 ms
6,944 KB
testcase_54 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int n, m;
    cin >> n >> m;
    vector g(n, vector<int>(0));
    for (size_t i = 0; i < (size_t)m; i++) {
        int u, v;
        cin >> u >> v;
        --u;
        --v;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    if (g[0].empty()) {
        for (size_t i = 0; i < (size_t)n; i++) {
            cout << "0\n";
        }
        return 0;
    }
    vector<int> d(n, (1 << 30));
    d[0] = 0;
    deque<int> q = {0};
    while (!q.empty()) {
        int u = q.front();
        q.pop_front();
        for (auto v : g[u]) {
            if (d[v] > d[u] + 1) {
                d[v] = d[u] + 1;
                q.push_back(v);
            }
        }
    }
    vector<int> cnt(n + 1, 0);
    for (auto x : d)
        if (x <= n) cnt[x]++;
    for (size_t i = 0; i <= (size_t)(n - 2); i++) cnt[i + 2] += cnt[i];
    for (size_t i = 1; i <= (size_t)n; i++) {
        cout << cnt[i] << "\n";
    }
}
0