結果

問題 No.2888 Mamehinata
ユーザー RubikunRubikun
提出日時 2024-09-13 21:25:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 1,751 bytes
コンパイル時間 2,477 ms
コンパイル使用メモリ 207,592 KB
実行使用メモリ 19,676 KB
最終ジャッジ日時 2024-09-13 21:25:26
合計ジャッジ時間 8,590 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
11,712 KB
testcase_01 AC 6 ms
11,776 KB
testcase_02 AC 6 ms
11,688 KB
testcase_03 AC 6 ms
11,508 KB
testcase_04 AC 6 ms
11,588 KB
testcase_05 AC 8 ms
11,724 KB
testcase_06 AC 7 ms
11,724 KB
testcase_07 AC 6 ms
11,504 KB
testcase_08 AC 6 ms
11,664 KB
testcase_09 AC 5 ms
11,548 KB
testcase_10 AC 6 ms
11,672 KB
testcase_11 AC 6 ms
11,536 KB
testcase_12 AC 5 ms
11,632 KB
testcase_13 AC 34 ms
12,928 KB
testcase_14 AC 22 ms
13,172 KB
testcase_15 AC 83 ms
15,736 KB
testcase_16 AC 95 ms
16,720 KB
testcase_17 AC 23 ms
12,888 KB
testcase_18 AC 44 ms
13,852 KB
testcase_19 AC 110 ms
16,900 KB
testcase_20 AC 84 ms
16,020 KB
testcase_21 AC 80 ms
15,884 KB
testcase_22 AC 40 ms
14,380 KB
testcase_23 AC 54 ms
15,464 KB
testcase_24 AC 97 ms
16,940 KB
testcase_25 AC 77 ms
16,664 KB
testcase_26 AC 75 ms
16,384 KB
testcase_27 AC 40 ms
14,580 KB
testcase_28 AC 18 ms
12,672 KB
testcase_29 AC 43 ms
14,012 KB
testcase_30 AC 124 ms
17,520 KB
testcase_31 AC 91 ms
16,640 KB
testcase_32 AC 62 ms
15,232 KB
testcase_33 AC 83 ms
16,208 KB
testcase_34 AC 70 ms
15,352 KB
testcase_35 AC 59 ms
14,976 KB
testcase_36 AC 133 ms
18,176 KB
testcase_37 AC 141 ms
18,360 KB
testcase_38 AC 33 ms
13,480 KB
testcase_39 AC 108 ms
17,024 KB
testcase_40 AC 147 ms
18,188 KB
testcase_41 AC 21 ms
12,928 KB
testcase_42 AC 113 ms
17,216 KB
testcase_43 AC 76 ms
18,004 KB
testcase_44 AC 83 ms
18,656 KB
testcase_45 AC 97 ms
19,676 KB
testcase_46 AC 15 ms
12,764 KB
testcase_47 AC 85 ms
18,532 KB
testcase_48 AC 74 ms
16,168 KB
testcase_49 AC 15 ms
12,160 KB
testcase_50 AC 34 ms
14,080 KB
testcase_51 AC 7 ms
11,904 KB
testcase_52 AC 6 ms
11,588 KB
testcase_53 AC 11 ms
11,904 KB
testcase_54 AC 6 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define vi vector<int>
#define vl vector<ll>
#define vii vector<pair<int,int>>
#define vll vector<pair<ll,ll>>
#define vvi vector<vector<int>>
#define vvl vector<vector<ll>>
#define vvii vector<vector<pair<int,int>>>
#define vvll vector<vector<pair<ll,ll>>>
#define vst vector<string>
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pb push_back
#define all(x) (x).begin(),(x).end()
#define mkunique(x) sort(all(x));(x).erase(unique(all(x)),(x).end())
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=15<<26;

int dis[MAX];
vector<int> G[MAX];

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    int N,M;cin>>N>>M;
    for(int i=0;i<M;i++){
        int a,b;cin>>a>>b;a--;b--;
        G[a].pb(b);
        G[b].pb(a);
    }
    for(int i=1;i<MAX;i++) dis[i]=INF;
    queue<int> Q;
    Q.push(0);
    
    while(!Q.empty()){
        int u=Q.front();Q.pop();
        for(int to:G[u]) if(chmin(dis[to],dis[u]+1)) Q.push(to);
    }
    
    vi ans(N+3);
    for(int i=0;i<N;i++){
        if(dis[i]!=INF) ans[dis[i]]++;
    }
    
    if(ans[1]==0){
        for(int i=0;i<N;i++) cout<<0<<"\n";
        return 0;
    }
    int a=0,b=0;
    for(int i=0;i<=N;i++){
        if(i&1){
            b+=ans[i];
            if(i) cout<<b<<"\n";
        }else{
            a+=ans[i];
            if(i) cout<<a<<"\n";
        }
    }
}


0