結果

問題 No.2634 Tree Distance 3
ユーザー 👑 potato167potato167
提出日時 2024-02-15 22:05:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 281 ms / 3,000 ms
コード長 1,650 bytes
コンパイル時間 2,572 ms
コンパイル使用メモリ 212,536 KB
実行使用メモリ 31,804 KB
最終ジャッジ日時 2024-09-28 19:30:09
合計ジャッジ時間 20,671 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
22,044 KB
testcase_01 AC 265 ms
22,052 KB
testcase_02 AC 263 ms
21,984 KB
testcase_03 AC 266 ms
21,956 KB
testcase_04 AC 262 ms
21,920 KB
testcase_05 AC 267 ms
21,980 KB
testcase_06 AC 264 ms
21,988 KB
testcase_07 AC 248 ms
22,032 KB
testcase_08 AC 223 ms
22,840 KB
testcase_09 AC 230 ms
22,924 KB
testcase_10 AC 239 ms
22,900 KB
testcase_11 AC 242 ms
22,848 KB
testcase_12 AC 232 ms
22,844 KB
testcase_13 AC 228 ms
22,964 KB
testcase_14 AC 235 ms
22,700 KB
testcase_15 AC 229 ms
22,896 KB
testcase_16 AC 209 ms
26,684 KB
testcase_17 AC 117 ms
16,768 KB
testcase_18 AC 158 ms
19,456 KB
testcase_19 AC 177 ms
24,064 KB
testcase_20 AC 54 ms
10,880 KB
testcase_21 AC 243 ms
28,384 KB
testcase_22 AC 258 ms
30,728 KB
testcase_23 AC 254 ms
31,804 KB
testcase_24 AC 261 ms
25,316 KB
testcase_25 AC 249 ms
24,000 KB
testcase_26 AC 261 ms
25,752 KB
testcase_27 AC 241 ms
24,004 KB
testcase_28 AC 242 ms
25,096 KB
testcase_29 AC 250 ms
24,492 KB
testcase_30 AC 244 ms
22,072 KB
testcase_31 AC 256 ms
22,080 KB
testcase_32 AC 241 ms
22,132 KB
testcase_33 AC 156 ms
16,716 KB
testcase_34 AC 33 ms
6,816 KB
testcase_35 AC 91 ms
11,392 KB
testcase_36 AC 50 ms
8,064 KB
testcase_37 AC 103 ms
12,800 KB
testcase_38 AC 3 ms
6,820 KB
testcase_39 AC 3 ms
6,820 KB
testcase_40 AC 3 ms
6,816 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 2 ms
6,820 KB
testcase_43 AC 73 ms
9,344 KB
testcase_44 AC 51 ms
7,296 KB
testcase_45 AC 231 ms
19,092 KB
testcase_46 AC 136 ms
13,972 KB
testcase_47 AC 243 ms
20,920 KB
testcase_48 AC 260 ms
22,096 KB
testcase_49 AC 277 ms
22,132 KB
testcase_50 AC 281 ms
22,152 KB
testcase_51 AC 279 ms
22,092 KB
testcase_52 AC 267 ms
22,124 KB
testcase_53 AC 3 ms
6,816 KB
testcase_54 AC 3 ms
6,820 KB
testcase_55 AC 3 ms
6,820 KB
testcase_56 AC 3 ms
6,816 KB
testcase_57 AC 3 ms
6,816 KB
testcase_58 AC 2 ms
6,816 KB
testcase_59 AC 2 ms
6,816 KB
testcase_60 AC 265 ms
21,984 KB
testcase_61 AC 260 ms
21,948 KB
testcase_62 AC 277 ms
21,912 KB
testcase_63 AC 210 ms
22,052 KB
testcase_64 AC 137 ms
15,956 KB
testcase_65 AC 202 ms
21,096 KB
testcase_66 AC 59 ms
8,960 KB
testcase_67 AC 49 ms
7,936 KB
testcase_68 AC 220 ms
22,728 KB
testcase_69 AC 207 ms
22,600 KB
testcase_70 AC 227 ms
22,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=int(a);i<int(b);i++)
#define all(p) p.begin(),p.end()
void chmin(int &a,int b){a=min(a,b);}
void chmax(int &a,int b){a=max(a,b);}

int main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	
	int N;
	cin>>N;
	vector<int> A(N);
	rep(i,0,N) cin>>A[i];
	vector<vector<int>> G(N);
	rep(i,0,N-1){
		int a,b;
		cin>>a>>b;
		a--,b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	vector<int> ans(N);
	vector<int> depth(N,-1);
	vector<int> E(N*2);
	int ind=0;
	auto dfs=[&](auto self,int var) -> void {
		E[var]=ind++;
		for(auto x:G[var]){
			if(depth[x]==-1){
				depth[x]=depth[var]+1;
				self(self,x);
			}
		}
		E[var+N]=ind++;
	};
	depth[0]=0;
	dfs(dfs,0);

	vector<int> seg(N*4);
	rep(i,0,N){
		seg[2*N+E[i]]=depth[i];
		seg[2*N+E[i+N]]=depth[i]-1;
	}
	for(int i=2*N-1;i>0;i--) seg[i]=min(seg[2*i],seg[2*i+1]);
	auto dist=[&](int a,int b) -> int {
		int res=N;
		int l=E[a],r=E[b];
		if(l>r) swap(l,r);
		r++;
		l+=2*N;
		r+=2*N;
		while(l<r){
			if(l&1) chmin(res,seg[l++]);
			if(r&1) chmin(res,seg[--r]);
			l>>=1;r>>=1;
		}
		return depth[a]+depth[b]-2*res;
	};

	vector<int> order(N);
	rep(i,0,N) order[i]=i;
	sort(all(order),[&](int l,int r){
		return A[l]>A[r];
	});
	int L=0,R=0;
	int X=order[0],Y=order[0],D=0;
	while(L<N){
		while(R<N&&A[order[L]]==A[order[R]]){
			int tmpX=dist(X,order[R]);
			int tmpY=dist(Y,order[R]);
			if(tmpX<tmpY) swap(X,Y),swap(tmpX,tmpY);
			if(D<tmpX) D=tmpX,Y=order[R];
			R++;
		}
		rep(i,L,R){
			ans[order[i]]=max(dist(order[i],X),dist(order[i],Y));
		}
		L=R;
	}

	rep(i,0,N){
		if(i) cout<<" ";
		cout<<ans[i];
	}
	cout<<"\n";
}
0