結果

問題 No.2888 Mamehinata
ユーザー 沙耶花沙耶花
提出日時 2024-09-13 21:24:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 782 bytes
コンパイル時間 4,550 ms
コンパイル使用メモリ 265,492 KB
実行使用メモリ 17,484 KB
最終ジャッジ日時 2024-09-13 21:25:21
合計ジャッジ時間 18,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,940 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,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 57 ms
6,944 KB
testcase_14 AC 138 ms
7,680 KB
testcase_15 WA -
testcase_16 AC 392 ms
13,780 KB
testcase_17 WA -
testcase_18 AC 119 ms
6,944 KB
testcase_19 AC 392 ms
13,576 KB
testcase_20 AC 352 ms
12,032 KB
testcase_21 AC 316 ms
11,520 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 412 ms
15,156 KB
testcase_25 AC 402 ms
14,864 KB
testcase_26 AC 380 ms
14,456 KB
testcase_27 AC 304 ms
12,464 KB
testcase_28 AC 62 ms
6,940 KB
testcase_29 AC 155 ms
7,936 KB
testcase_30 AC 414 ms
15,076 KB
testcase_31 AC 338 ms
13,056 KB
testcase_32 AC 233 ms
10,112 KB
testcase_33 AC 311 ms
12,416 KB
testcase_34 AC 259 ms
11,008 KB
testcase_35 AC 218 ms
9,764 KB
testcase_36 AC 453 ms
15,948 KB
testcase_37 AC 465 ms
16,368 KB
testcase_38 AC 127 ms
7,040 KB
testcase_39 AC 388 ms
13,940 KB
testcase_40 AC 466 ms
16,024 KB
testcase_41 AC 75 ms
6,940 KB
testcase_42 AC 401 ms
14,300 KB
testcase_43 AC 327 ms
14,480 KB
testcase_44 AC 370 ms
15,984 KB
testcase_45 AC 413 ms
17,484 KB
testcase_46 AC 54 ms
6,940 KB
testcase_47 AC 349 ms
15,480 KB
testcase_48 AC 264 ms
10,960 KB
testcase_49 AC 23 ms
6,940 KB
testcase_50 AC 76 ms
6,940 KB
testcase_51 AC 5 ms
6,940 KB
testcase_52 AC 3 ms
6,940 KB
testcase_53 AC 12 ms
6,944 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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];
	for(int i=1;i<=n;i++){
		cout<<ans[i]<<endl;
	}
	return 0;
	
}
0