結果

問題 No.277 根掘り葉掘り
ユーザー ishizuishizu
提出日時 2015-09-05 01:23:39
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 159 ms / 3,000 ms
コード長 1,337 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 72,096 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-07-19 03:02:27
合計ジャッジ時間 3,186 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 2 ms
5,888 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 2 ms
5,632 KB
testcase_05 AC 2 ms
5,760 KB
testcase_06 AC 2 ms
5,760 KB
testcase_07 AC 3 ms
5,760 KB
testcase_08 AC 3 ms
5,760 KB
testcase_09 AC 159 ms
15,744 KB
testcase_10 AC 140 ms
9,880 KB
testcase_11 AC 154 ms
9,600 KB
testcase_12 AC 156 ms
12,800 KB
testcase_13 AC 158 ms
9,728 KB
testcase_14 AC 154 ms
9,796 KB
testcase_15 AC 157 ms
10,368 KB
testcase_16 AC 153 ms
9,924 KB
testcase_17 AC 153 ms
9,984 KB
testcase_18 AC 150 ms
9,856 KB
testcase_19 AC 153 ms
9,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<vector>
#include<queue>

#include<map>
#include<set>
#include<string>
#include<algorithm>
#include<functional>
using namespace std;
#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#define INF 1<<30
#define MP make_pair
#define mp make_pair
#define pb push_back
#define PB push_back
#define DEBUG(x) cout<<#x<<": "<<x<<endl
#define ll long long
#define ull unsigned long long
int n;
vector<int> to[100010];
bool a[100010];
int depth[100010];
int len[100010];
int dfs(int tar,int dep){
	depth[tar]=dep;
	a[tar]=true;
	int ans=INF;
	REP(i,to[tar].size()){
		if(!a[to[tar][i]]) ans=min(ans,dfs( to[tar][i], dep+1));
	}
	if(ans==INF) return len[tar]=0;
	return len[tar]=1+ans;
}
void dfs2(int tar,int par){
	a[tar]=true;
	len[tar] = min(len[par]+1,len[tar]);
	REP(i,to[tar].size()){
		if(!a[to[tar][i]]) dfs2(to[tar][i],tar);
	}
// 	len[tar] = min(len[par]+1,len[tar]);
	
}
int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);
	cin>>n;
	REP(i,n-1){
		int a,b;cin>>a>>b;
		to[a].pb(b);
		to[b].pb(a);
	}
// 	fill(len,len+n+1,INF);

	dfs(1,0);
// 	FOR(i,1,n+1) cout<<len[i]<<endl;
	fill(a,a+n+1,0);
	dfs2(1,1);
	FOR(i,1,n+1) cout<<min(len[i],depth[i])<<endl;
	 

}
0