結果

問題 No.2888 Mamehinata
ユーザー Today03Today03
提出日時 2024-09-13 22:32:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 1,083 bytes
コンパイル時間 3,741 ms
コンパイル使用メモリ 256,240 KB
実行使用メモリ 17,628 KB
最終ジャッジ日時 2024-09-13 22:32:58
合計ジャッジ時間 11,217 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 4 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 32 ms
7,552 KB
testcase_15 AC 162 ms
10,880 KB
testcase_16 AC 169 ms
13,776 KB
testcase_17 AC 29 ms
9,216 KB
testcase_18 AC 97 ms
6,144 KB
testcase_19 AC 196 ms
13,568 KB
testcase_20 AC 166 ms
11,796 KB
testcase_21 AC 164 ms
11,648 KB
testcase_22 AC 60 ms
11,136 KB
testcase_23 AC 91 ms
13,696 KB
testcase_24 AC 161 ms
14,976 KB
testcase_25 AC 135 ms
14,684 KB
testcase_26 AC 128 ms
14,436 KB
testcase_27 AC 60 ms
12,416 KB
testcase_28 AC 26 ms
5,376 KB
testcase_29 AC 67 ms
7,936 KB
testcase_30 AC 192 ms
14,908 KB
testcase_31 AC 154 ms
12,988 KB
testcase_32 AC 101 ms
10,112 KB
testcase_33 AC 139 ms
12,216 KB
testcase_34 AC 116 ms
10,880 KB
testcase_35 AC 97 ms
9,984 KB
testcase_36 AC 211 ms
16,024 KB
testcase_37 AC 223 ms
16,268 KB
testcase_38 AC 53 ms
7,040 KB
testcase_39 AC 197 ms
13,824 KB
testcase_40 AC 225 ms
16,128 KB
testcase_41 AC 31 ms
5,504 KB
testcase_42 AC 208 ms
14,208 KB
testcase_43 AC 133 ms
14,636 KB
testcase_44 AC 156 ms
15,956 KB
testcase_45 AC 180 ms
17,628 KB
testcase_46 AC 22 ms
5,376 KB
testcase_47 AC 147 ms
15,604 KB
testcase_48 AC 130 ms
11,076 KB
testcase_49 AC 23 ms
5,376 KB
testcase_50 AC 75 ms
6,272 KB
testcase_51 AC 4 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 12 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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]]++;
    }

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

    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