結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,472 KB
testcase_01 AC 5 ms
9,600 KB
testcase_02 AC 5 ms
9,472 KB
testcase_03 AC 5 ms
9,600 KB
testcase_04 WA -
testcase_05 AC 4 ms
9,600 KB
testcase_06 AC 5 ms
9,600 KB
testcase_07 AC 4 ms
9,600 KB
testcase_08 AC 5 ms
9,600 KB
testcase_09 AC 4 ms
9,472 KB
testcase_10 AC 4 ms
9,728 KB
testcase_11 WA -
testcase_12 AC 4 ms
9,472 KB
testcase_13 AC 25 ms
11,008 KB
testcase_14 AC 21 ms
11,520 KB
testcase_15 WA -
testcase_16 AC 93 ms
15,668 KB
testcase_17 WA -
testcase_18 AC 44 ms
12,032 KB
testcase_19 AC 98 ms
15,896 KB
testcase_20 AC 81 ms
14,672 KB
testcase_21 AC 80 ms
14,452 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 89 ms
16,128 KB
testcase_25 AC 74 ms
15,616 KB
testcase_26 AC 75 ms
15,612 KB
testcase_27 AC 38 ms
13,440 KB
testcase_28 AC 18 ms
10,880 KB
testcase_29 AC 37 ms
12,620 KB
testcase_30 AC 111 ms
16,804 KB
testcase_31 AC 89 ms
15,804 KB
testcase_32 AC 56 ms
13,764 KB
testcase_33 AC 74 ms
15,416 KB
testcase_34 AC 63 ms
14,300 KB
testcase_35 AC 51 ms
13,852 KB
testcase_36 AC 127 ms
17,368 KB
testcase_37 AC 123 ms
17,436 KB
testcase_38 AC 34 ms
11,860 KB
testcase_39 AC 118 ms
16,612 KB
testcase_40 AC 139 ms
17,656 KB
testcase_41 AC 20 ms
11,144 KB
testcase_42 AC 126 ms
16,544 KB
testcase_43 AC 75 ms
16,876 KB
testcase_44 AC 83 ms
17,464 KB
testcase_45 AC 92 ms
18,284 KB
testcase_46 AC 15 ms
10,880 KB
testcase_47 AC 84 ms
17,256 KB
testcase_48 AC 74 ms
14,388 KB
testcase_49 AC 14 ms
10,112 KB
testcase_50 AC 33 ms
11,972 KB
testcase_51 AC 6 ms
9,600 KB
testcase_52 AC 6 ms
9,600 KB
testcase_53 AC 8 ms
9,856 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
			}
		}
	}
	for(int i=0;i<N;i++)cnt[i+2]+=cnt[i];
	for(int i=1;i<=N;i++)cout<<cnt[i]<<"\n";
}
0