結果

問題 No.2888 Mamehinata
ユーザー t98slidert98slider
提出日時 2024-09-14 18:03:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 784 bytes
コンパイル時間 2,366 ms
コンパイル使用メモリ 210,256 KB
実行使用メモリ 16,628 KB
最終ジャッジ日時 2024-09-14 18:03:16
合計ジャッジ時間 9,843 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 22 ms
5,376 KB
testcase_14 AC 19 ms
7,296 KB
testcase_15 WA -
testcase_16 AC 92 ms
13,184 KB
testcase_17 WA -
testcase_18 AC 41 ms
6,016 KB
testcase_19 AC 99 ms
12,988 KB
testcase_20 AC 75 ms
11,264 KB
testcase_21 AC 78 ms
11,136 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 86 ms
14,336 KB
testcase_25 AC 68 ms
13,748 KB
testcase_26 AC 71 ms
13,696 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 100 ms
14,276 KB
testcase_31 AC 90 ms
12,412 KB
testcase_32 AC 52 ms
9,600 KB
testcase_33 AC 72 ms
11,776 KB
testcase_34 AC 63 ms
10,368 KB
testcase_35 AC 51 ms
9,344 KB
testcase_36 AC 119 ms
15,104 KB
testcase_37 AC 113 ms
15,616 KB
testcase_38 AC 28 ms
6,784 KB
testcase_39 AC 101 ms
13,056 KB
testcase_40 AC 131 ms
15,252 KB
testcase_41 AC 17 ms
5,504 KB
testcase_42 AC 110 ms
13,568 KB
testcase_43 AC 76 ms
13,768 KB
testcase_44 AC 78 ms
15,220 KB
testcase_45 AC 89 ms
16,628 KB
testcase_46 AC 11 ms
5,376 KB
testcase_47 AC 76 ms
14,860 KB
testcase_48 AC 64 ms
10,720 KB
testcase_49 AC 10 ms
5,376 KB
testcase_50 AC 29 ms
5,888 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 3 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 + 2);
    queue<int> que;
    que.emplace(0);
    dp[0] = 0;
    ans[1]++;
    while(!que.empty()){
        int v = que.front();
        que.pop();
        if (v) ans[dp[v] - 1]++;
        for(auto &&u : g[v]){
            if(dp[v] + 1 >= dp[u]) continue;
            dp[u] = dp[v] + 1;
            que.emplace(u);
        }
    }
    for(int i = 0; i < n; i++){
        ans[i + 2] += ans[i];
        cout << ans[i] << '\n';
    }
}
0