結果

問題 No.2888 Mamehinata
ユーザー kaakikaaki
提出日時 2024-09-13 23:25:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 177,540 KB
実行使用メモリ 19,828 KB
最終ジャッジ日時 2024-09-13 23:25:21
合計ジャッジ時間 13,799 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 28 ms
6,944 KB
testcase_14 AC 129 ms
7,936 KB
testcase_15 AC 207 ms
11,392 KB
testcase_16 AC 334 ms
15,512 KB
testcase_17 AC 191 ms
7,552 KB
testcase_18 AC 66 ms
7,936 KB
testcase_19 AC 318 ms
16,000 KB
testcase_20 AC 245 ms
13,824 KB
testcase_21 AC 262 ms
13,716 KB
testcase_22 AC 227 ms
9,376 KB
testcase_23 AC 296 ms
11,320 KB
testcase_24 AC 346 ms
16,336 KB
testcase_25 AC 322 ms
15,912 KB
testcase_26 AC 321 ms
15,656 KB
testcase_27 AC 284 ms
13,200 KB
testcase_28 AC 50 ms
6,940 KB
testcase_29 AC 126 ms
8,576 KB
testcase_30 AC 335 ms
16,448 KB
testcase_31 AC 268 ms
14,236 KB
testcase_32 AC 183 ms
10,952 KB
testcase_33 AC 244 ms
13,452 KB
testcase_34 AC 220 ms
11,904 KB
testcase_35 AC 176 ms
10,752 KB
testcase_36 AC 362 ms
17,608 KB
testcase_37 AC 391 ms
17,888 KB
testcase_38 AC 100 ms
7,168 KB
testcase_39 AC 301 ms
14,412 KB
testcase_40 AC 383 ms
16,668 KB
testcase_41 AC 60 ms
6,944 KB
testcase_42 AC 345 ms
14,732 KB
testcase_43 AC 259 ms
16,332 KB
testcase_44 AC 294 ms
17,776 KB
testcase_45 AC 329 ms
19,828 KB
testcase_46 AC 43 ms
6,944 KB
testcase_47 AC 290 ms
17,544 KB
testcase_48 AC 195 ms
12,636 KB
testcase_49 AC 10 ms
6,940 KB
testcase_50 AC 31 ms
8,448 KB
testcase_51 AC 3 ms
6,944 KB
testcase_52 AC 2 ms
6,940 KB
testcase_53 AC 6 ms
6,944 KB
testcase_54 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

  #include <bits/stdc++.h> 
using namespace std;
using ll =long long;
#define all(v) v.begin(),v.end()
 #define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)

ll INF=2e18;


int main() {
    ios::sync_with_stdio(false);
  cin.tie(0);

ll N,M;
cin>>N>>M;

vector<vector<ll>> vec(N,vector<ll> (0));
for(ll i=0;i<M;i++) {
  ll u,v;cin>>u>>v;
  u--;v--;
  vec[u].push_back(v);
  vec[v].push_back(u);
}

if(vec[0].size()==0) {
  for(ll i=0;i<N;i++) cout<<0<<endl;
  return 0;
}


vector<ll> d(N,INF);
d[0]=0;

queue<ll> S;
S.push(0);

while(!S.empty()) {
  auto s=S.front();
  S.pop();

  for(auto x:vec[s]) {
    if(d[x]==INF) {
      d[x]=d[s]+1;
      S.push(x);
    }
  }
}



vector<ll> cnt(N+1);
for(ll i=0;i<N;i++) {
  if(d[i]==INF) continue;
  cnt[d[i]]++;
}



ll g=1;
ll k=0;


for(ll i=1;i<=N;i++) {
  if(i%2==0) {
    g+=cnt[i];
    cout<<g<<endl;
  }
  else {
    k+=cnt[i];
    cout<<k<<endl;
  }
}

}





   
0