結果

問題 No.2888 Mamehinata
ユーザー t98slidert98slider
提出日時 2024-09-14 18:08:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 774 bytes
コンパイル時間 2,421 ms
コンパイル使用メモリ 208,536 KB
実行使用メモリ 16,624 KB
最終ジャッジ日時 2024-09-14 18:08:32
合計ジャッジ時間 8,386 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 21 ms
5,376 KB
testcase_14 AC 20 ms
7,168 KB
testcase_15 WA -
testcase_16 AC 90 ms
13,236 KB
testcase_17 WA -
testcase_18 AC 40 ms
6,016 KB
testcase_19 AC 103 ms
13,056 KB
testcase_20 AC 79 ms
11,392 KB
testcase_21 AC 85 ms
11,008 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 85 ms
14,288 KB
testcase_25 AC 70 ms
13,952 KB
testcase_26 AC 66 ms
13,824 KB
testcase_27 AC 35 ms
11,520 KB
testcase_28 AC 14 ms
5,376 KB
testcase_29 AC 34 ms
7,680 KB
testcase_30 AC 114 ms
14,208 KB
testcase_31 AC 91 ms
12,288 KB
testcase_32 AC 53 ms
9,728 KB
testcase_33 AC 71 ms
11,776 KB
testcase_34 AC 59 ms
10,384 KB
testcase_35 AC 50 ms
9,472 KB
testcase_36 AC 116 ms
15,232 KB
testcase_37 AC 126 ms
15,616 KB
testcase_38 AC 29 ms
6,912 KB
testcase_39 AC 99 ms
13,132 KB
testcase_40 AC 139 ms
15,232 KB
testcase_41 AC 17 ms
5,376 KB
testcase_42 AC 110 ms
13,440 KB
testcase_43 AC 70 ms
13,772 KB
testcase_44 AC 75 ms
15,216 KB
testcase_45 AC 87 ms
16,624 KB
testcase_46 AC 11 ms
5,376 KB
testcase_47 AC 73 ms
14,732 KB
testcase_48 AC 62 ms
10,592 KB
testcase_49 AC 10 ms
5,376 KB
testcase_50 AC 29 ms
6,016 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 6 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m;
    cin >> n >> m;
    vector<vector<int>> g(n);
    for(int i = 0; i < m; i++){
        int u, v;
        cin >> u >> v;
        g[--u].emplace_back(--v);
        g[v].emplace_back(u);
    }
    vector<int> dp(n, 1 << 30), ans(n + 3);
    queue<int> que;
    que.emplace(0);
    dp[0] = 0;
    ans[2]++;
    while(!que.empty()){
        int v = que.front();
        que.pop();
        ans[dp[v]]++;
        for(auto &&u : g[v]){
            if(dp[v] + 1 >= dp[u]) continue;
            dp[u] = dp[v] + 1;
            que.emplace(u);
        }
    }
    for(int i = 1; i <= n; i++){
        ans[i + 2] += ans[i];
        cout << ans[i] << '\n';
    }
}
0