結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 28 ms
6,272 KB
testcase_14 AC 126 ms
7,936 KB
testcase_15 WA -
testcase_16 AC 313 ms
15,488 KB
testcase_17 WA -
testcase_18 AC 66 ms
7,808 KB
testcase_19 AC 312 ms
15,972 KB
testcase_20 AC 253 ms
13,824 KB
testcase_21 AC 252 ms
13,824 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 341 ms
16,340 KB
testcase_25 AC 323 ms
15,872 KB
testcase_26 AC 327 ms
15,616 KB
testcase_27 AC 278 ms
13,312 KB
testcase_28 AC 49 ms
5,376 KB
testcase_29 AC 127 ms
8,576 KB
testcase_30 AC 335 ms
16,508 KB
testcase_31 AC 277 ms
14,336 KB
testcase_32 AC 194 ms
11,008 KB
testcase_33 AC 249 ms
13,528 KB
testcase_34 AC 205 ms
11,904 KB
testcase_35 AC 173 ms
10,752 KB
testcase_36 AC 379 ms
17,628 KB
testcase_37 AC 382 ms
18,092 KB
testcase_38 AC 99 ms
7,296 KB
testcase_39 AC 317 ms
14,412 KB
testcase_40 AC 382 ms
16,764 KB
testcase_41 AC 62 ms
5,888 KB
testcase_42 AC 315 ms
14,812 KB
testcase_43 AC 261 ms
16,204 KB
testcase_44 AC 288 ms
17,904 KB
testcase_45 AC 329 ms
19,828 KB
testcase_46 AC 43 ms
5,376 KB
testcase_47 AC 278 ms
17,512 KB
testcase_48 AC 191 ms
12,508 KB
testcase_49 AC 10 ms
5,376 KB
testcase_50 AC 30 ms
8,320 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 6 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
}

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