結果

問題 No.2888 Mamehinata
ユーザー cho435cho435
提出日時 2024-09-14 20:49:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 997 bytes
コンパイル時間 4,514 ms
コンパイル使用メモリ 265,112 KB
実行使用メモリ 17,524 KB
最終ジャッジ日時 2024-09-14 20:49:54
合計ジャッジ時間 12,218 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 33 ms
5,376 KB
testcase_14 AC 29 ms
7,424 KB
testcase_15 WA -
testcase_16 AC 105 ms
13,312 KB
testcase_17 WA -
testcase_18 AC 46 ms
6,912 KB
testcase_19 AC 113 ms
13,312 KB
testcase_20 AC 94 ms
11,648 KB
testcase_21 AC 87 ms
11,392 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 93 ms
14,336 KB
testcase_25 AC 80 ms
13,952 KB
testcase_26 AC 78 ms
13,696 KB
testcase_27 AC 41 ms
11,648 KB
testcase_28 AC 15 ms
5,376 KB
testcase_29 AC 36 ms
7,680 KB
testcase_30 AC 107 ms
14,336 KB
testcase_31 AC 90 ms
12,416 KB
testcase_32 AC 64 ms
9,728 KB
testcase_33 AC 83 ms
11,776 KB
testcase_34 AC 66 ms
10,496 KB
testcase_35 AC 53 ms
9,600 KB
testcase_36 AC 125 ms
15,232 KB
testcase_37 AC 129 ms
15,744 KB
testcase_38 AC 30 ms
6,784 KB
testcase_39 AC 104 ms
13,184 KB
testcase_40 AC 134 ms
15,360 KB
testcase_41 AC 19 ms
5,376 KB
testcase_42 AC 116 ms
13,568 KB
testcase_43 AC 77 ms
14,536 KB
testcase_44 AC 84 ms
15,856 KB
testcase_45 AC 101 ms
17,524 KB
testcase_46 AC 12 ms
5,376 KB
testcase_47 AC 82 ms
15,624 KB
testcase_48 AC 76 ms
11,096 KB
testcase_49 AC 12 ms
5,376 KB
testcase_50 AC 33 ms
7,040 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 7 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (ll i = s; i < (ll)(t); i++)

template<typename T>
bool chmin(T &x, T y) { return x > y ? (x = y, true) : false; }
template<typename T>
bool chmax(T &x, T y) { return x < y ? (x = y, true) : false; }

struct io_setup {
	io_setup() {
		ios::sync_with_stdio(false);
		std::cin.tie(nullptr);
		cout << fixed << setprecision(15);
	}
} io_setup;

int main(){
	int n,m;
	cin>>n>>m;
	vector<vector<int>> g(n);
	rep(i,0,m){
		int a,b;
		cin>>a>>b;
		a--; b--;
		g.at(a).push_back(b);
		g.at(b).push_back(a);
	}
	vector<int> sm(n+1,0);
	queue<pair<int,int>> q;
	q.push({0,0});
	vector<int> stl(n,0);
	while(!q.empty()){
		auto[nw,h]=q.front();
		q.pop();
		if(stl.at(nw)) continue;
		stl.at(nw)=1;
		sm.at(h)++;
		for(int nx:g.at(nw)){
			if(stl.at(nx)) continue;
			q.push({nx,h+1});
		}
	}
	int nw1=0,nw2=sm.at(0);
	rep(i,1,n+1){
		nw1+=sm.at(i);
		cout<<nw1<<"\n";
		swap(nw1,nw2);
	}
}
0