結果

問題 No.2888 Mamehinata
ユーザー V_MelvilleV_Melville
提出日時 2024-09-20 05:33:05
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 908 bytes
コンパイル時間 2,820 ms
コンパイル使用メモリ 253,568 KB
実行使用メモリ 16,604 KB
最終ジャッジ日時 2024-09-20 05:33:17
合計ジャッジ時間 9,882 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
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 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 46 ms
5,376 KB
testcase_14 AC 28 ms
7,296 KB
testcase_15 AC 129 ms
9,600 KB
testcase_16 AC 142 ms
13,184 KB
testcase_17 AC 21 ms
7,552 KB
testcase_18 AC 83 ms
6,016 KB
testcase_19 AC 168 ms
12,928 KB
testcase_20 AC 127 ms
11,392 KB
testcase_21 AC 138 ms
11,136 KB
testcase_22 AC 47 ms
9,472 KB
testcase_23 AC 87 ms
11,264 KB
testcase_24 AC 141 ms
14,208 KB
testcase_25 AC 124 ms
13,952 KB
testcase_26 AC 119 ms
13,696 KB
testcase_27 AC 54 ms
11,648 KB
testcase_28 AC 25 ms
5,376 KB
testcase_29 AC 59 ms
7,680 KB
testcase_30 AC 167 ms
14,208 KB
testcase_31 AC 149 ms
12,416 KB
testcase_32 AC 92 ms
9,728 KB
testcase_33 AC 151 ms
11,776 KB
testcase_34 AC 100 ms
10,496 KB
testcase_35 AC 90 ms
9,472 KB
testcase_36 AC 196 ms
15,232 KB
testcase_37 AC 214 ms
15,488 KB
testcase_38 AC 49 ms
6,912 KB
testcase_39 AC 176 ms
13,184 KB
testcase_40 AC 246 ms
15,360 KB
testcase_41 AC 29 ms
5,376 KB
testcase_42 AC 174 ms
13,568 KB
testcase_43 AC 130 ms
13,872 KB
testcase_44 AC 142 ms
15,192 KB
testcase_45 AC 168 ms
16,604 KB
testcase_46 AC 20 ms
5,376 KB
testcase_47 AC 139 ms
14,832 KB
testcase_48 AC 118 ms
10,696 KB
testcase_49 AC 23 ms
5,376 KB
testcase_50 AC 71 ms
5,888 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 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)

using namespace std;

int main() {
    int n, m;
    cin >> n >> m;
    
    vector<vector<int>> to(n);
    rep(i, m) {
        int a, b;
        cin >> a >> b;
        --a; --b;
        to[a].push_back(b);
        to[b].push_back(a);
    }
    
    if (!to[0].size()) {
        rep(i, n) puts("0");
        return 0;
    }
    
    const int INF = 1001001001;
    vector<int> dist(n, INF);
    queue<int> q;
    dist[0] = 0; q.push(0);
    while (q.size()) {
        int v = q.front(); q.pop();
        for (int u : to[v]) {
            if (dist[u] != INF) continue;
            dist[u] = dist[v]+1;
            q.push(u);
        }
    }
    
    vector<int> ans(n+1);
    for (int x : dist) if (x <= n) ans[x]++;
    rep(i, n-1) ans[i+2] += ans[i];
    
    for (int i = 1; i <= n; ++i) cout << ans[i] << '\n';
    
    return 0;
}
0