結果

問題 No.2888 Mamehinata
ユーザー V_MelvilleV_Melville
提出日時 2024-09-20 05:32:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 929 bytes
コンパイル時間 3,285 ms
コンパイル使用メモリ 254,132 KB
実行使用メモリ 16,856 KB
最終ジャッジ日時 2024-09-20 05:32:19
合計ジャッジ時間 12,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 49 ms
5,376 KB
testcase_14 AC 34 ms
7,168 KB
testcase_15 AC 131 ms
9,600 KB
testcase_16 AC 149 ms
13,136 KB
testcase_17 AC 23 ms
7,424 KB
testcase_18 AC 86 ms
6,144 KB
testcase_19 AC 181 ms
12,928 KB
testcase_20 AC 146 ms
11,392 KB
testcase_21 AC 144 ms
11,136 KB
testcase_22 AC 57 ms
9,308 KB
testcase_23 AC 81 ms
11,264 KB
testcase_24 AC 154 ms
14,208 KB
testcase_25 AC 131 ms
14,064 KB
testcase_26 AC 118 ms
13,712 KB
testcase_27 AC 54 ms
11,616 KB
testcase_28 AC 23 ms
5,376 KB
testcase_29 AC 60 ms
7,680 KB
testcase_30 AC 181 ms
14,204 KB
testcase_31 AC 134 ms
12,288 KB
testcase_32 AC 88 ms
9,728 KB
testcase_33 AC 125 ms
11,904 KB
testcase_34 AC 101 ms
10,396 KB
testcase_35 AC 89 ms
9,600 KB
testcase_36 AC 212 ms
15,232 KB
testcase_37 AC 209 ms
15,560 KB
testcase_38 AC 48 ms
6,912 KB
testcase_39 AC 160 ms
13,144 KB
testcase_40 AC 239 ms
15,360 KB
testcase_41 AC 33 ms
5,376 KB
testcase_42 AC 153 ms
13,696 KB
testcase_43 AC 122 ms
13,868 KB
testcase_44 AC 153 ms
15,320 KB
testcase_45 AC 164 ms
16,856 KB
testcase_46 AC 20 ms
5,376 KB
testcase_47 AC 138 ms
14,964 KB
testcase_48 AC 118 ms
10,820 KB
testcase_49 AC 22 ms
5,376 KB
testcase_50 AC 77 ms
5,888 KB
testcase_51 AC 4 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 11 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;
using ll = long long;

int main() {
    ll 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