結果

問題 No.2888 Mamehinata
ユーザー 沙耶花沙耶花
提出日時 2024-09-13 21:26:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 820 bytes
コンパイル時間 4,639 ms
コンパイル使用メモリ 265,304 KB
実行使用メモリ 17,612 KB
最終ジャッジ日時 2024-09-13 21:26:43
合計ジャッジ時間 19,207 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 57 ms
6,944 KB
testcase_14 AC 142 ms
7,552 KB
testcase_15 AC 286 ms
11,036 KB
testcase_16 AC 370 ms
13,848 KB
testcase_17 AC 203 ms
9,136 KB
testcase_18 AC 118 ms
6,944 KB
testcase_19 AC 408 ms
13,696 KB
testcase_20 AC 324 ms
12,032 KB
testcase_21 AC 314 ms
11,648 KB
testcase_22 AC 259 ms
11,164 KB
testcase_23 AC 342 ms
13,672 KB
testcase_24 AC 415 ms
15,140 KB
testcase_25 AC 382 ms
14,660 KB
testcase_26 AC 381 ms
14,436 KB
testcase_27 AC 308 ms
12,420 KB
testcase_28 AC 61 ms
6,944 KB
testcase_29 AC 160 ms
8,064 KB
testcase_30 AC 416 ms
14,852 KB
testcase_31 AC 336 ms
12,996 KB
testcase_32 AC 230 ms
10,240 KB
testcase_33 AC 312 ms
12,416 KB
testcase_34 AC 259 ms
10,876 KB
testcase_35 AC 223 ms
9,984 KB
testcase_36 AC 474 ms
15,908 KB
testcase_37 AC 475 ms
16,452 KB
testcase_38 AC 123 ms
7,168 KB
testcase_39 AC 391 ms
13,764 KB
testcase_40 AC 479 ms
16,052 KB
testcase_41 AC 75 ms
6,944 KB
testcase_42 AC 389 ms
14,188 KB
testcase_43 AC 322 ms
14,588 KB
testcase_44 AC 366 ms
15,984 KB
testcase_45 AC 410 ms
17,612 KB
testcase_46 AC 54 ms
6,940 KB
testcase_47 AC 354 ms
15,600 KB
testcase_48 AC 261 ms
11,088 KB
testcase_49 AC 23 ms
6,940 KB
testcase_50 AC 74 ms
6,944 KB
testcase_51 AC 5 ms
6,940 KB
testcase_52 AC 2 ms
6,944 KB
testcase_53 AC 12 ms
6,944 KB
testcase_54 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001LL

int main(){
	
	int n,m;
	cin>>n>>m;
	vector<int> d(n,Inf32);
	vector<vector<int>> E(n);
	rep(i,m){
		int a,b;
		cin>>a>>b;
		a--;b--;
		E[a].push_back(b);
		E[b].push_back(a);
	}
	queue<int> Q;
	Q.push(0);
	d[0]=0;
	while(!Q.empty()){
		int v=Q.front();
		Q.pop();
		for(int u:E[v]){
			if(d[u]==Inf32){
				d[u]=d[v]+1;
				Q.push(u);
			}
		}
	}
	vector<long long> ans(n+1,0);
	rep(i,n){
		if(d[i]==Inf32)continue;
		ans[d[i]]++;
	}
	rep(i,n-1)ans[i+2] += ans[i];
	if(E[0].size()==0)ans.assign(n+1,0);
	for(int i=1;i<=n;i++){
		cout<<ans[i]<<endl;
	}
	return 0;
	
}
0