結果

問題 No.2888 Mamehinata
ユーザー 👑 amentorimaruamentorimaru
提出日時 2024-09-05 13:01:09
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 1,303 ms
コンパイル使用メモリ 98,668 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-09-07 09:48:26
合計ジャッジ時間 14,963 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 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,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 57 ms
6,940 KB
testcase_14 AC 137 ms
7,240 KB
testcase_15 AC 287 ms
9,600 KB
testcase_16 AC 375 ms
13,164 KB
testcase_17 AC 198 ms
7,420 KB
testcase_18 AC 117 ms
6,940 KB
testcase_19 AC 384 ms
12,928 KB
testcase_20 AC 318 ms
11,312 KB
testcase_21 AC 304 ms
11,052 KB
testcase_22 AC 256 ms
9,268 KB
testcase_23 AC 328 ms
11,332 KB
testcase_24 AC 404 ms
14,220 KB
testcase_25 AC 380 ms
13,924 KB
testcase_26 AC 371 ms
13,748 KB
testcase_27 AC 307 ms
11,684 KB
testcase_28 AC 60 ms
6,944 KB
testcase_29 AC 153 ms
7,680 KB
testcase_30 AC 412 ms
14,208 KB
testcase_31 AC 340 ms
12,376 KB
testcase_32 AC 230 ms
9,816 KB
testcase_33 AC 310 ms
11,768 KB
testcase_34 AC 252 ms
10,496 KB
testcase_35 AC 220 ms
9,600 KB
testcase_36 AC 452 ms
15,388 KB
testcase_37 AC 471 ms
15,636 KB
testcase_38 AC 120 ms
6,944 KB
testcase_39 AC 393 ms
13,184 KB
testcase_40 AC 466 ms
15,268 KB
testcase_41 AC 74 ms
6,940 KB
testcase_42 AC 399 ms
13,556 KB
testcase_43 AC 321 ms
13,876 KB
testcase_44 AC 362 ms
15,136 KB
testcase_45 AC 410 ms
16,768 KB
testcase_46 AC 52 ms
6,944 KB
testcase_47 AC 350 ms
14,824 KB
testcase_48 AC 262 ms
10,720 KB
testcase_49 AC 23 ms
6,940 KB
testcase_50 AC 75 ms
6,944 KB
testcase_51 AC 5 ms
6,940 KB
testcase_52 AC 3 ms
6,940 KB
testcase_53 AC 13 ms
6,940 KB
testcase_54 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
using namespace std;

int main()
{
  int n,m;
  cin>>n>>m;
  vector<vector<int>> g(n);
  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);
  }
  
  if(g[0].empty()){
    for(int i=0;i<n;i++){
      cout<<0<<endl;
    }
    return 0;
  }
  
  vector<int> d(n, n+1);
  vector<int> c(n + 1);
  d[0]=0;
  c[0]=1;
  queue<int> que;
  que.push(0);
  while(!que.empty()){
  	int v=que.front();
  	que.pop();
  	for(auto& v2:g[v]){
  	  if(d[v2]>d[v]+1){
  	  	d[v2]=d[v]+1;
  	  	c[d[v2]]++;
  	  	que.push(v2);
  	  }
  	}
  }
  
  for(int i=0;i<n;i++){
  	if(i)c[i+1]+=c[i-1];
  	cout<<c[i+1]<<endl;
  }
  return 0;
}
0