結果

問題 No.2888 Mamehinata
ユーザー FplusFplusFFplusFplusF
提出日時 2024-09-13 22:03:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,016 bytes
コンパイル時間 3,094 ms
コンパイル使用メモリ 256,940 KB
実行使用メモリ 19,824 KB
最終ジャッジ日時 2024-09-13 22:03:45
合計ジャッジ時間 10,927 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 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 AC 2 ms
6,944 KB
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,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 TLE -
testcase_14 AC 20 ms
7,936 KB
testcase_15 WA -
testcase_16 AC 88 ms
15,468 KB
testcase_17 WA -
testcase_18 AC 40 ms
7,808 KB
testcase_19 AC 121 ms
16,000 KB
testcase_20 AC 87 ms
13,952 KB
testcase_21 AC 89 ms
13,824 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 91 ms
16,396 KB
testcase_25 AC 66 ms
15,764 KB
testcase_26 AC 70 ms
15,476 KB
testcase_27 AC 34 ms
13,224 KB
testcase_28 AC 14 ms
6,940 KB
testcase_29 AC 33 ms
8,576 KB
testcase_30 AC 104 ms
16,420 KB
testcase_31 AC 85 ms
14,320 KB
testcase_32 AC 54 ms
11,008 KB
testcase_33 AC 78 ms
13,440 KB
testcase_34 AC 57 ms
11,904 KB
testcase_35 AC 49 ms
10,752 KB
testcase_36 AC 110 ms
17,612 KB
testcase_37 AC 129 ms
18,008 KB
testcase_38 AC 28 ms
7,296 KB
testcase_39 AC 92 ms
14,440 KB
testcase_40 AC 115 ms
16,876 KB
testcase_41 AC 16 ms
6,940 KB
testcase_42 AC 98 ms
14,824 KB
testcase_43 AC 66 ms
16,328 KB
testcase_44 AC 76 ms
17,904 KB
testcase_45 AC 84 ms
19,824 KB
testcase_46 AC 10 ms
6,940 KB
testcase_47 AC 67 ms
17,544 KB
testcase_48 AC 63 ms
12,512 KB
testcase_49 AC 32 ms
6,940 KB
testcase_50 AC 166 ms
8,448 KB
testcase_51 AC 4 ms
6,944 KB
testcase_52 AC 3 ms
6,940 KB
testcase_53 AC 13 ms
6,940 KB
testcase_54 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

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);
    }
    if(n*(n+m)<=1e8){
        vector<ll> c(n,0);
        c[0]=1;
        vector<ll> ans;
        rep(_,n){
            rep(i,n){
                if(c[i]==1) continue;
                for(auto j:g[i]){
                    if(c[j]==1) c[i]=2;
                }
            }
            rep(i,n){
                if(c[i]==1) c[i]=0;
            }
            ll now=0;
            rep(i,n){
                if(c[i]==2) c[i]=1;
                if(c[i]==1) now++;
            }
            ans.push_back(now);
        }
        ll x=ans[98],y=ans[99];
        while(len(ans)<n){
            ans.push_back(x);
            ans.push_back(y);
        }
        rep(i,n) cout << ans[i] << '\n';
        return 0;
    }
    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