結果

問題 No.2888 Mamehinata
ユーザー 👑 seekworserseekworser
提出日時 2024-08-31 12:14:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 848 bytes
コンパイル時間 3,199 ms
コンパイル使用メモリ 255,656 KB
実行使用メモリ 16,860 KB
最終ジャッジ日時 2024-09-07 09:48:20
合計ジャッジ時間 10,067 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 1 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 WA -
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 48 ms
6,944 KB
testcase_14 AC 32 ms
7,424 KB
testcase_15 WA -
testcase_16 AC 157 ms
13,136 KB
testcase_17 WA -
testcase_18 AC 89 ms
6,940 KB
testcase_19 AC 182 ms
12,928 KB
testcase_20 AC 137 ms
11,348 KB
testcase_21 AC 142 ms
11,136 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 157 ms
14,268 KB
testcase_25 AC 119 ms
14,000 KB
testcase_26 AC 117 ms
13,636 KB
testcase_27 AC 61 ms
11,644 KB
testcase_28 AC 26 ms
6,940 KB
testcase_29 AC 65 ms
7,680 KB
testcase_30 AC 175 ms
14,344 KB
testcase_31 AC 148 ms
12,416 KB
testcase_32 AC 95 ms
9,728 KB
testcase_33 AC 123 ms
11,776 KB
testcase_34 AC 108 ms
10,624 KB
testcase_35 AC 92 ms
9,472 KB
testcase_36 AC 202 ms
15,216 KB
testcase_37 AC 206 ms
15,492 KB
testcase_38 AC 52 ms
6,944 KB
testcase_39 AC 151 ms
13,196 KB
testcase_40 AC 218 ms
15,264 KB
testcase_41 AC 33 ms
6,940 KB
testcase_42 AC 179 ms
13,516 KB
testcase_43 AC 133 ms
13,872 KB
testcase_44 AC 144 ms
15,192 KB
testcase_45 AC 164 ms
16,860 KB
testcase_46 AC 21 ms
6,944 KB
testcase_47 AC 154 ms
14,836 KB
testcase_48 AC 130 ms
10,696 KB
testcase_49 AC 22 ms
6,940 KB
testcase_50 AC 72 ms
6,940 KB
testcase_51 AC 4 ms
6,940 KB
testcase_52 AC 3 ms
6,940 KB
testcase_53 AC 12 ms
6,940 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
    }
    vector<int> d(n, (1 << 30));
    d[0] = 0;
    deque<int> q = {{0, 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