結果

問題 No.2888 Mamehinata
ユーザー FplusFplusFFplusFplusF
提出日時 2024-09-13 21:58:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,306 bytes
コンパイル時間 3,178 ms
コンパイル使用メモリ 254,100 KB
実行使用メモリ 19,828 KB
最終ジャッジ日時 2024-09-13 21:59:54
合計ジャッジ時間 8,824 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 21 ms
6,940 KB
testcase_14 AC 19 ms
8,064 KB
testcase_15 WA -
testcase_16 AC 94 ms
15,496 KB
testcase_17 WA -
testcase_18 AC 42 ms
7,936 KB
testcase_19 AC 100 ms
16,000 KB
testcase_20 AC 91 ms
13,952 KB
testcase_21 AC 98 ms
13,696 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 94 ms
16,392 KB
testcase_25 AC 74 ms
15,976 KB
testcase_26 AC 77 ms
15,604 KB
testcase_27 AC 36 ms
13,144 KB
testcase_28 AC 14 ms
6,944 KB
testcase_29 AC 40 ms
8,704 KB
testcase_30 AC 118 ms
16,424 KB
testcase_31 AC 91 ms
14,336 KB
testcase_32 AC 57 ms
11,008 KB
testcase_33 AC 76 ms
13,356 KB
testcase_34 AC 62 ms
11,884 KB
testcase_35 AC 55 ms
10,752 KB
testcase_36 AC 132 ms
17,532 KB
testcase_37 AC 131 ms
18,000 KB
testcase_38 AC 28 ms
7,296 KB
testcase_39 AC 109 ms
14,368 KB
testcase_40 AC 138 ms
16,760 KB
testcase_41 AC 17 ms
6,944 KB
testcase_42 AC 117 ms
14,840 KB
testcase_43 AC 73 ms
16,324 KB
testcase_44 AC 77 ms
17,904 KB
testcase_45 AC 90 ms
19,828 KB
testcase_46 AC 11 ms
6,940 KB
testcase_47 AC 75 ms
17,420 KB
testcase_48 AC 64 ms
12,640 KB
testcase_49 AC 10 ms
6,944 KB
testcase_50 AC 29 ms
8,448 KB
testcase_51 AC 3 ms
6,944 KB
testcase_52 AC 3 ms
6,940 KB
testcase_53 AC 5 ms
6,940 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ull=unsigned long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define replr(i,l,r) for (ll i=(ll)(l);i<(ll)(r);i++)
#define all(v) v.begin(),v.end()
#define len(v) ((ll)v.size())
template<class T> inline bool chmin(T &a,T b){
    if(a>b){
        a=b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T &a,T b){
    if(a<b){
        a=b;
        return true;
    }
    return false;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n,m;
    cin >> n >> m;
    vector<vector<ll>> g(n);
    while(m--){
        ll u,v;
        cin >> u >> v;
        u--;
        v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    queue<ll> q;
    vector<ll> ans;
    vector<ll> d(n,-1),cnt(n+1,0);
    q.push(0);
    d[0]=0;
    cnt[0]=1;
    while(!q.empty()){
        ll x=q.front();
        q.pop();
        for(auto i:g[x]){
            if(d[i]!=-1) continue;
            d[i]=d[x]+1;
            cnt[d[i]]++;
            q.push(i);
        }
    }
    vector<ll> c(2,0);
    c[0]=1;
    replr(i,1,n+1){
        c[i&1]+=cnt[i];
        cout << c[i&1] << '\n';
    }
}
0