結果

問題 No.2888 Mamehinata
ユーザー Today03Today03
提出日時 2024-09-13 22:21:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 955 bytes
コンパイル時間 3,189 ms
コンパイル使用メモリ 253,180 KB
実行使用メモリ 16,732 KB
最終ジャッジ日時 2024-09-13 22:21:53
合計ジャッジ時間 10,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
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 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 50 ms
5,376 KB
testcase_14 AC 32 ms
7,296 KB
testcase_15 WA -
testcase_16 AC 162 ms
13,184 KB
testcase_17 WA -
testcase_18 AC 96 ms
6,016 KB
testcase_19 AC 193 ms
12,928 KB
testcase_20 AC 171 ms
11,364 KB
testcase_21 AC 160 ms
11,136 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 156 ms
14,208 KB
testcase_25 AC 127 ms
13,856 KB
testcase_26 AC 125 ms
13,696 KB
testcase_27 AC 58 ms
11,636 KB
testcase_28 AC 26 ms
5,376 KB
testcase_29 AC 71 ms
7,680 KB
testcase_30 AC 189 ms
14,196 KB
testcase_31 AC 156 ms
12,416 KB
testcase_32 AC 98 ms
9,728 KB
testcase_33 AC 141 ms
11,736 KB
testcase_34 AC 123 ms
10,496 KB
testcase_35 AC 94 ms
9,504 KB
testcase_36 AC 233 ms
15,316 KB
testcase_37 AC 230 ms
15,616 KB
testcase_38 AC 56 ms
6,784 KB
testcase_39 AC 189 ms
13,124 KB
testcase_40 AC 233 ms
15,464 KB
testcase_41 AC 33 ms
5,376 KB
testcase_42 AC 203 ms
13,568 KB
testcase_43 AC 138 ms
14,000 KB
testcase_44 AC 153 ms
15,192 KB
testcase_45 AC 170 ms
16,732 KB
testcase_46 AC 21 ms
5,376 KB
testcase_47 AC 156 ms
14,960 KB
testcase_48 AC 134 ms
10,812 KB
testcase_49 AC 23 ms
5,376 KB
testcase_50 AC 75 ms
5,888 KB
testcase_51 AC 5 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 12 ms
5,376 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<int> 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