結果

問題 No.2888 Mamehinata
ユーザー kaakikaaki
提出日時 2024-09-13 21:33:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 834 bytes
コンパイル時間 1,834 ms
コンパイル使用メモリ 176,336 KB
実行使用メモリ 19,700 KB
最終ジャッジ日時 2024-09-13 21:33:51
合計ジャッジ時間 13,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 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,144 KB
testcase_14 AC 137 ms
8,064 KB
testcase_15 WA -
testcase_16 AC 309 ms
15,488 KB
testcase_17 WA -
testcase_18 AC 66 ms
7,808 KB
testcase_19 AC 298 ms
15,928 KB
testcase_20 AC 250 ms
13,952 KB
testcase_21 AC 242 ms
13,824 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 339 ms
16,384 KB
testcase_25 AC 327 ms
15,744 KB
testcase_26 AC 323 ms
15,488 KB
testcase_27 AC 288 ms
13,312 KB
testcase_28 AC 50 ms
5,376 KB
testcase_29 AC 125 ms
8,576 KB
testcase_30 AC 368 ms
16,512 KB
testcase_31 AC 271 ms
14,336 KB
testcase_32 AC 186 ms
11,008 KB
testcase_33 AC 247 ms
13,440 KB
testcase_34 AC 206 ms
11,904 KB
testcase_35 AC 174 ms
10,752 KB
testcase_36 AC 367 ms
17,536 KB
testcase_37 AC 377 ms
17,920 KB
testcase_38 AC 99 ms
7,296 KB
testcase_39 AC 316 ms
14,464 KB
testcase_40 AC 383 ms
16,896 KB
testcase_41 AC 62 ms
5,760 KB
testcase_42 AC 327 ms
14,720 KB
testcase_43 AC 261 ms
16,328 KB
testcase_44 AC 290 ms
17,900 KB
testcase_45 AC 337 ms
19,700 KB
testcase_46 AC 43 ms
5,376 KB
testcase_47 AC 286 ms
17,416 KB
testcase_48 AC 198 ms
12,760 KB
testcase_49 AC 11 ms
5,376 KB
testcase_50 AC 33 ms
8,448 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 2 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 b=1;
ll w=0;

for(ll i=1;i<=N;i++) {
  swap(b,w);

  ll now=cnt[i];
  now+=b;
  cout<<now<<endl;

  b=now;
}

}



   
0