結果

問題 No.2888 Mamehinata
ユーザー Today03Today03
提出日時 2024-09-13 22:28:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,083 bytes
コンパイル時間 3,365 ms
コンパイル使用メモリ 254,848 KB
実行使用メモリ 17,500 KB
最終ジャッジ日時 2024-09-13 22:28:24
合計ジャッジ時間 11,816 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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,552 KB
testcase_15 WA -
testcase_16 AC 171 ms
13,824 KB
testcase_17 WA -
testcase_18 AC 94 ms
6,016 KB
testcase_19 AC 201 ms
13,568 KB
testcase_20 AC 162 ms
11,904 KB
testcase_21 AC 167 ms
11,520 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 167 ms
15,104 KB
testcase_25 AC 137 ms
14,720 KB
testcase_26 AC 128 ms
14,464 KB
testcase_27 AC 68 ms
12,544 KB
testcase_28 AC 25 ms
5,376 KB
testcase_29 AC 67 ms
7,936 KB
testcase_30 AC 196 ms
14,848 KB
testcase_31 AC 162 ms
13,056 KB
testcase_32 AC 102 ms
10,112 KB
testcase_33 AC 138 ms
12,288 KB
testcase_34 AC 116 ms
10,880 KB
testcase_35 AC 95 ms
9,856 KB
testcase_36 AC 219 ms
16,000 KB
testcase_37 AC 223 ms
16,256 KB
testcase_38 AC 53 ms
7,040 KB
testcase_39 AC 200 ms
13,824 KB
testcase_40 AC 233 ms
16,000 KB
testcase_41 AC 34 ms
5,504 KB
testcase_42 AC 208 ms
14,208 KB
testcase_43 AC 136 ms
14,512 KB
testcase_44 AC 154 ms
15,832 KB
testcase_45 AC 173 ms
17,500 KB
testcase_46 AC 21 ms
5,376 KB
testcase_47 AC 153 ms
15,600 KB
testcase_48 AC 135 ms
11,056 KB
testcase_49 AC 23 ms
5,376 KB
testcase_50 AC 74 ms
6,272 KB
testcase_51 AC 4 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<ll> ans(N + 1);
    for (int i = 0; i < N; i++) {
        if (dst[i] != INF) ans[dst[i]]++;
    }

    if (dst[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