結果

問題 No.2888 Mamehinata
ユーザー makichanmakichan
提出日時 2024-09-13 21:32:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 977 bytes
コンパイル時間 5,558 ms
コンパイル使用メモリ 311,600 KB
実行使用メモリ 16,732 KB
最終ジャッジ日時 2024-09-13 21:32:40
合計ジャッジ時間 13,682 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 52 ms
5,376 KB
testcase_14 AC 42 ms
7,424 KB
testcase_15 WA -
testcase_16 AC 174 ms
13,184 KB
testcase_17 WA -
testcase_18 AC 96 ms
6,016 KB
testcase_19 AC 199 ms
13,056 KB
testcase_20 AC 171 ms
11,520 KB
testcase_21 AC 170 ms
11,136 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 171 ms
14,208 KB
testcase_25 AC 139 ms
14,080 KB
testcase_26 AC 138 ms
13,696 KB
testcase_27 AC 64 ms
11,776 KB
testcase_28 AC 27 ms
5,376 KB
testcase_29 AC 70 ms
7,680 KB
testcase_30 AC 204 ms
14,208 KB
testcase_31 AC 165 ms
12,416 KB
testcase_32 AC 112 ms
9,856 KB
testcase_33 AC 150 ms
11,776 KB
testcase_34 AC 120 ms
10,496 KB
testcase_35 AC 100 ms
9,472 KB
testcase_36 AC 229 ms
15,232 KB
testcase_37 AC 241 ms
15,488 KB
testcase_38 AC 53 ms
6,912 KB
testcase_39 AC 181 ms
13,184 KB
testcase_40 AC 250 ms
15,488 KB
testcase_41 AC 32 ms
5,504 KB
testcase_42 AC 201 ms
13,568 KB
testcase_43 AC 139 ms
13,868 KB
testcase_44 AC 156 ms
15,188 KB
testcase_45 AC 179 ms
16,732 KB
testcase_46 AC 23 ms
5,376 KB
testcase_47 AC 180 ms
14,960 KB
testcase_48 AC 139 ms
10,820 KB
testcase_49 AC 23 ms
5,376 KB
testcase_50 AC 75 ms
6,016 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 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::static_modint<998244353>;
//using mint = atcoder::static_modint<1000000007>;
using namespace std;
using namespace atcoder;
using ld = long double;
using ll = long long;
#define mp(a,b) make_pair(a,b)
#define rep(i,s,n) for(int i=s; i<n; i++)
const vector<int> dx{1,0,-1,0},dy{0,1,0,-1};

int main(){
    int n,m;
    cin >> n >> m;
    vector<vector<int>> G(n);
    int a,b;
    rep(i,0,m){
        cin >> a >> b;
        a--,b--;
        G[a].push_back(b);
        swap(a,b);
        G[a].push_back(b);
    }

    vector<int> dist(n,-1);
    dist[0]=0;
    queue<int> Q;
    Q.push(0);
    vector<int> ans(n+1,0);
    ans[0]++;
    while(Q.size()){
        int x=Q.front();
        Q.pop();
        for(auto y:G[x])if(dist[y]==-1){
            Q.push(y);
            dist[y]=dist[x]+1;
            ans[dist[y]]++;
        }
    }

    rep(i,0,n-1)ans[i+2]+=ans[i];
    rep(i,1,n+1)cout << ans[i] << "\n";
}
0