結果

問題 No.2888 Mamehinata
ユーザー Today03Today03
提出日時 2024-09-13 22:22:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 954 bytes
コンパイル時間 3,182 ms
コンパイル使用メモリ 255,604 KB
実行使用メモリ 17,500 KB
最終ジャッジ日時 2024-09-13 22:22:26
合計ジャッジ時間 10,250 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 50 ms
6,940 KB
testcase_14 AC 30 ms
7,552 KB
testcase_15 WA -
testcase_16 AC 147 ms
13,816 KB
testcase_17 WA -
testcase_18 AC 92 ms
6,940 KB
testcase_19 AC 166 ms
13,536 KB
testcase_20 AC 137 ms
11,868 KB
testcase_21 AC 169 ms
11,520 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 143 ms
15,032 KB
testcase_25 AC 122 ms
14,652 KB
testcase_26 AC 111 ms
14,568 KB
testcase_27 AC 53 ms
12,376 KB
testcase_28 AC 25 ms
6,940 KB
testcase_29 AC 63 ms
7,936 KB
testcase_30 AC 171 ms
14,904 KB
testcase_31 AC 163 ms
12,948 KB
testcase_32 AC 96 ms
10,112 KB
testcase_33 AC 128 ms
12,364 KB
testcase_34 AC 109 ms
10,880 KB
testcase_35 AC 92 ms
9,856 KB
testcase_36 AC 199 ms
15,908 KB
testcase_37 AC 207 ms
16,308 KB
testcase_38 AC 51 ms
7,040 KB
testcase_39 AC 169 ms
13,776 KB
testcase_40 AC 201 ms
16,092 KB
testcase_41 AC 30 ms
6,944 KB
testcase_42 AC 166 ms
14,152 KB
testcase_43 AC 136 ms
14,380 KB
testcase_44 AC 144 ms
15,828 KB
testcase_45 AC 172 ms
17,500 KB
testcase_46 AC 21 ms
6,940 KB
testcase_47 AC 138 ms
15,472 KB
testcase_48 AC 122 ms
11,072 KB
testcase_49 AC 22 ms
6,944 KB
testcase_50 AC 74 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;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

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

    vector<int> dst(N, INF);
    dst[0] = 0;
    queue<int> que;
    que.push(0);

    while (!que.empty()) {
        int now = que.front();
        que.pop();

        for (int nxt : G[now]) {
            if (dst[nxt] > dst[now] + 1) {
                dst[nxt] = dst[now] + 1;
                que.push(nxt);
            }
        }
    }

    vector<ll> ans(N + 1);
    for (int i = 0; i < N; i++) {
        if (dst[i] != INF) ans[dst[i]]++;
    }
    for (int i = 0; i + 2 <= N; i++) {
        ans[i + 2] += ans[i];
    }

    for (int i = 1; i <= N; i++) {
        cout << ans[i] << '\n';
    }
}
0