結果

問題 No.2888 Mamehinata
ユーザー kotatsugamekotatsugame
提出日時 2024-09-13 21:31:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 761 ms
コンパイル使用メモリ 70,880 KB
実行使用メモリ 18,284 KB
最終ジャッジ日時 2024-09-13 21:31:30
合計ジャッジ時間 6,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
9,472 KB
testcase_01 AC 6 ms
9,600 KB
testcase_02 AC 7 ms
9,472 KB
testcase_03 AC 6 ms
9,472 KB
testcase_04 AC 7 ms
9,600 KB
testcase_05 AC 6 ms
9,472 KB
testcase_06 AC 6 ms
9,600 KB
testcase_07 AC 7 ms
9,472 KB
testcase_08 AC 6 ms
9,472 KB
testcase_09 AC 7 ms
9,472 KB
testcase_10 AC 6 ms
9,472 KB
testcase_11 AC 7 ms
9,472 KB
testcase_12 AC 7 ms
9,600 KB
testcase_13 AC 26 ms
10,880 KB
testcase_14 AC 24 ms
11,520 KB
testcase_15 AC 72 ms
13,824 KB
testcase_16 AC 107 ms
15,540 KB
testcase_17 AC 19 ms
11,136 KB
testcase_18 AC 45 ms
12,032 KB
testcase_19 AC 113 ms
15,768 KB
testcase_20 AC 97 ms
14,672 KB
testcase_21 AC 86 ms
14,452 KB
testcase_22 AC 35 ms
12,544 KB
testcase_23 AC 49 ms
13,696 KB
testcase_24 AC 100 ms
16,132 KB
testcase_25 AC 81 ms
15,488 KB
testcase_26 AC 80 ms
15,604 KB
testcase_27 AC 42 ms
13,440 KB
testcase_28 AC 20 ms
10,880 KB
testcase_29 AC 42 ms
12,636 KB
testcase_30 AC 118 ms
16,676 KB
testcase_31 AC 95 ms
15,696 KB
testcase_32 AC 61 ms
13,892 KB
testcase_33 AC 87 ms
15,284 KB
testcase_34 AC 69 ms
14,172 KB
testcase_35 AC 60 ms
13,600 KB
testcase_36 AC 135 ms
17,240 KB
testcase_37 AC 138 ms
17,440 KB
testcase_38 AC 35 ms
11,852 KB
testcase_39 AC 117 ms
16,612 KB
testcase_40 AC 140 ms
17,528 KB
testcase_41 AC 23 ms
11,016 KB
testcase_42 AC 120 ms
16,540 KB
testcase_43 AC 77 ms
16,752 KB
testcase_44 AC 83 ms
17,388 KB
testcase_45 AC 98 ms
18,284 KB
testcase_46 AC 17 ms
10,880 KB
testcase_47 AC 82 ms
17,260 KB
testcase_48 AC 74 ms
14,524 KB
testcase_49 AC 15 ms
10,112 KB
testcase_50 AC 34 ms
11,904 KB
testcase_51 AC 7 ms
9,600 KB
testcase_52 AC 7 ms
9,600 KB
testcase_53 AC 11 ms
9,856 KB
testcase_54 AC 7 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
using namespace std;
int N,M;
vector<int>G[2<<17];
int cnt[2<<17];
int dist[2<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>M;
	for(int i=0;i<M;i++)
	{
		int u,v;cin>>u>>v;u--,v--;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	{
		vector<int>Q;
		Q.push_back(0);
		for(int i=0;i<N;i++)dist[i]=1e9;
		dist[0]=0;
		for(int i=0;i<Q.size();i++)
		{
			int u=Q[i];
			cnt[dist[u]]++;
			for(int v:G[u])if(dist[v]>dist[u]+1)
			{
				dist[v]=dist[u]+1;
				Q.push_back(v);
			}
		}
		if(Q.size()==1)
		{
			for(int i=1;i<=N;i++)cout<<"0\n";
			return 0;
		}
	}
	for(int i=0;i<N;i++)cnt[i+2]+=cnt[i];
	for(int i=1;i<=N;i++)cout<<cnt[i]<<"\n";
}
0