結果

問題 No.2888 Mamehinata
ユーザー FplusFplusFFplusFplusF
提出日時 2024-09-13 21:30:09
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,424 bytes
コンパイル時間 3,022 ms
コンパイル使用メモリ 251,084 KB
実行使用メモリ 19,696 KB
最終ジャッジ日時 2024-09-13 21:30:34
合計ジャッジ時間 15,764 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 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 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,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 64 ms
6,944 KB
testcase_14 AC 110 ms
8,408 KB
testcase_15 AC 284 ms
13,308 KB
testcase_16 AC 617 ms
16,128 KB
testcase_17 AC 123 ms
10,736 KB
testcase_18 AC 147 ms
8,064 KB
testcase_19 AC 611 ms
16,576 KB
testcase_20 AC 504 ms
13,796 KB
testcase_21 AC 487 ms
13,632 KB
testcase_22 AC 208 ms
12,752 KB
testcase_23 AC 288 ms
15,292 KB
testcase_24 AC 652 ms
16,800 KB
testcase_25 AC 363 ms
16,468 KB
testcase_26 WA -
testcase_27 AC 220 ms
13,816 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 175 ms
16,840 KB
testcase_44 AC 207 ms
18,288 KB
testcase_45 AC 256 ms
19,696 KB
testcase_46 AC 23 ms
6,944 KB
testcase_47 AC 176 ms
17,924 KB
testcase_48 AC 131 ms
12,636 KB
testcase_49 AC 18 ms
6,944 KB
testcase_50 AC 54 ms
8,320 KB
testcase_51 AC 4 ms
6,940 KB
testcase_52 AC 2 ms
6,944 KB
testcase_53 AC 9 ms
6,940 KB
testcase_54 AC 2 ms
6,940 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);
    }
    vector<ll> c(n,0);
    c[0]=1;
    vector<ll> ans;
    rep(_,100){
        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';
}
0