結果

問題 No.2888 Mamehinata
ユーザー hourenhouren
提出日時 2024-09-13 21:29:18
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,210 bytes
コンパイル時間 5,131 ms
コンパイル使用メモリ 281,940 KB
実行使用メモリ 16,752 KB
最終ジャッジ日時 2024-09-13 21:29:29
合計ジャッジ時間 9,360 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 20 ms
7,296 KB
testcase_15 WA -
testcase_16 AC 95 ms
13,184 KB
testcase_17 WA -
testcase_18 AC 42 ms
6,016 KB
testcase_19 AC 105 ms
13,056 KB
testcase_20 AC 80 ms
11,392 KB
testcase_21 AC 89 ms
11,136 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 108 ms
14,284 KB
testcase_25 AC 72 ms
13,952 KB
testcase_26 AC 70 ms
13,696 KB
testcase_27 AC 36 ms
11,624 KB
testcase_28 AC 15 ms
5,376 KB
testcase_29 AC 35 ms
7,680 KB
testcase_30 AC 102 ms
14,176 KB
testcase_31 AC 81 ms
12,472 KB
testcase_32 AC 55 ms
9,728 KB
testcase_33 AC 74 ms
11,824 KB
testcase_34 AC 63 ms
10,496 KB
testcase_35 AC 52 ms
9,472 KB
testcase_36 AC 117 ms
15,176 KB
testcase_37 AC 129 ms
15,440 KB
testcase_38 AC 29 ms
6,944 KB
testcase_39 AC 113 ms
13,216 KB
testcase_40 AC 124 ms
15,240 KB
testcase_41 AC 17 ms
6,944 KB
testcase_42 AC 100 ms
13,600 KB
testcase_43 AC 67 ms
13,888 KB
testcase_44 AC 75 ms
15,212 KB
testcase_45 AC 88 ms
16,752 KB
testcase_46 AC 12 ms
6,944 KB
testcase_47 AC 74 ms
14,856 KB
testcase_48 AC 67 ms
10,588 KB
testcase_49 AC 10 ms
6,944 KB
testcase_50 AC 30 ms
6,944 KB
testcase_51 AC 3 ms
6,940 KB
testcase_52 AC 3 ms
6,944 KB
testcase_53 AC 6 ms
6,944 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
    }
    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