結果

問題 No.2888 Mamehinata
ユーザー FplusFplusF
提出日時 2024-09-13 21:58:52
言語 C++23
(gcc 13.3.0 + boost 1.87.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 45 WA * 7
権限があれば一括ダウンロードができます

ソースコード

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