結果

問題 No.277 根掘り葉掘り
ユーザー TawaraTawara
提出日時 2015-09-05 02:49:07
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 220 ms / 3,000 ms
コード長 724 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 68,716 KB
実行使用メモリ 9,732 KB
最終ジャッジ日時 2024-07-19 03:38:21
合計ジャッジ時間 4,017 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 213 ms
8,960 KB
testcase_10 AC 195 ms
9,732 KB
testcase_11 AC 214 ms
9,216 KB
testcase_12 AC 216 ms
9,344 KB
testcase_13 AC 220 ms
9,472 KB
testcase_14 AC 214 ms
9,472 KB
testcase_15 AC 218 ms
9,216 KB
testcase_16 AC 213 ms
9,216 KB
testcase_17 AC 216 ms
9,472 KB
testcase_18 AC 212 ms
9,216 KB
testcase_19 AC 215 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef vector <int> VI;
typedef vector <VI> VVI;

#define range(i,a,b) for(int i=(a); i < (b); i++)
#define rep(i,n) range(i,0,n)
#define each(i,c) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); i++)

int main(){
	int N,x,y,h;
	VVI e;
	VI S;
	queue <int> n;
	cin >> N;
	e = VVI(N);
	S = VI(N,N);
	rep(i,N-1){
		cin >> x >> y;
		x--; y--;
		e[x].push_back(y);
		e[y].push_back(x);
	}
	n.push(0); S[0] = 0;
	rep(i,N) if(e[i].size() == 1){n.push(i); S[i] = 0;}

	while(!n.empty()){
		h = n.front();
		n.pop();
		each(nxt, e[h])
			if(S[h]+1<S[*nxt]){
				S[*nxt] = S[h]+1;
				n.push(*nxt);
			}
	}
	rep(i,N) cout << S[i] << endl;
	return 0;
}
0