結果

問題 No.2888 Mamehinata
ユーザー hourenhouren
提出日時 2024-09-13 21:35:35
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 1,288 bytes
コンパイル時間 4,907 ms
コンパイル使用メモリ 281,752 KB
実行使用メモリ 16,860 KB
最終ジャッジ日時 2024-09-13 21:35:53
合計ジャッジ時間 9,444 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 21 ms
6,944 KB
testcase_14 AC 19 ms
7,296 KB
testcase_15 AC 79 ms
9,728 KB
testcase_16 AC 97 ms
13,136 KB
testcase_17 AC 15 ms
7,664 KB
testcase_18 AC 42 ms
6,940 KB
testcase_19 AC 96 ms
13,100 KB
testcase_20 AC 82 ms
11,520 KB
testcase_21 AC 83 ms
11,136 KB
testcase_22 AC 30 ms
9,356 KB
testcase_23 AC 44 ms
11,420 KB
testcase_24 AC 91 ms
14,284 KB
testcase_25 AC 72 ms
13,912 KB
testcase_26 AC 75 ms
13,676 KB
testcase_27 AC 34 ms
11,688 KB
testcase_28 AC 16 ms
6,940 KB
testcase_29 AC 73 ms
7,680 KB
testcase_30 AC 119 ms
14,204 KB
testcase_31 AC 90 ms
12,544 KB
testcase_32 AC 59 ms
9,728 KB
testcase_33 AC 83 ms
11,776 KB
testcase_34 AC 62 ms
10,496 KB
testcase_35 AC 59 ms
9,600 KB
testcase_36 AC 134 ms
15,332 KB
testcase_37 AC 143 ms
15,640 KB
testcase_38 AC 30 ms
6,940 KB
testcase_39 AC 117 ms
13,140 KB
testcase_40 AC 145 ms
15,368 KB
testcase_41 AC 17 ms
6,940 KB
testcase_42 AC 122 ms
13,556 KB
testcase_43 AC 74 ms
13,896 KB
testcase_44 AC 80 ms
15,212 KB
testcase_45 AC 93 ms
16,860 KB
testcase_46 AC 11 ms
6,944 KB
testcase_47 AC 76 ms
14,904 KB
testcase_48 AC 70 ms
10,840 KB
testcase_49 AC 11 ms
6,944 KB
testcase_50 AC 30 ms
6,944 KB
testcase_51 AC 3 ms
6,944 KB
testcase_52 AC 2 ms
6,940 KB
testcase_53 AC 6 ms
6,944 KB
testcase_54 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
#define fix(x) fixed << setprecision(x)
#define asc(x) x, vector<x>, greater<x>
#define rep(i, n) for(ll i = 0; i < n; ++i)
#define all(x) (x).begin(),(x).end()
template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;}
constexpr ll INFLL = (1LL << 62), MOD = 998244353;
constexpr int INF = (1 << 30);

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n,m;
    cin >> n >> m;
    vector<vector<int>> g(n);
    rep(i,m){
        int u,v;
        cin >> u >> v;
        --u, --v;
        g[u].emplace_back(v);
        g[v].emplace_back(u);
    }
    if(!g[0].size()){
        rep(i,n) cout << "0\n";
        return 0;
    }
    vector<int> dist(n,INF), cnt(n+1,0);
    dist[0] = 0;
    queue<int> que;
    que.emplace(0);
    while(que.size()){
        int now = que.front();
        que.pop();
        for(int x:g[now]){
            if(chmin(dist[x], dist[now]+1)) que.emplace(x);
        }
    }
    rep(i,n) if(dist[i]<n) cnt[dist[i]] += 1;
    int ans[] = {1,0};
    for(int i=1;i<=n;++i){
        ans[i&1] += cnt[i];
        cout << ans[i&1] << '\n';
    }
    return 0;
}
0