結果

問題 No.277 根掘り葉掘り
ユーザー fiordfiord
提出日時 2015-09-08 11:17:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 197 ms / 3,000 ms
コード長 587 bytes
コンパイル時間 1,340 ms
コンパイル使用メモリ 164,656 KB
実行使用メモリ 9,720 KB
最終ジャッジ日時 2024-07-19 04:57:53
合計ジャッジ時間 4,459 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 190 ms
9,088 KB
testcase_10 AC 168 ms
9,720 KB
testcase_11 AC 190 ms
9,344 KB
testcase_12 AC 192 ms
9,344 KB
testcase_13 AC 192 ms
9,472 KB
testcase_14 AC 197 ms
9,344 KB
testcase_15 AC 195 ms
9,344 KB
testcase_16 AC 193 ms
9,344 KB
testcase_17 AC 193 ms
9,344 KB
testcase_18 AC 192 ms
9,216 KB
testcase_19 AC 193 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int n;	cin>>n;
	vector<int> ls[n];
	int x,y;
	for(int i=1;i<n;i++){
		cin>>x>>y;	x--;	y--;
		ls[x].push_back(y);	ls[y].push_back(x);
	}
	vector<int> ans(n,(1<<30));
	queue<int> q;	ans[0]=0,q.push(0);	
	for(int i=1;i<n;i++){
		if(ls[i].size()==1){
			ans[i]=0,q.push(i);
		}
	}
	while(!q.empty()){
		int now=q.front();	q.pop();
		for(int i=0;i<ls[now].size();i++){
			int next=ls[now][i];
			if(ans[next]>ans[now]+1){
				ans[next]=ans[now]+1;
				q.push(next);
			}
		}
	}
	for(int i=0;i<n;i++)	cout<<ans[i]<<endl;
	return 0;
}
0