結果

問題 No.2634 Tree Distance 3
ユーザー 👑 potato167potato167
提出日時 2024-02-14 11:57:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 236 ms / 3,000 ms
コード長 1,715 bytes
コンパイル時間 2,596 ms
コンパイル使用メモリ 216,136 KB
実行使用メモリ 50,892 KB
最終ジャッジ日時 2024-09-28 19:27:21
合計ジャッジ時間 18,147 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
49,244 KB
testcase_01 AC 214 ms
49,340 KB
testcase_02 AC 236 ms
49,264 KB
testcase_03 AC 226 ms
49,208 KB
testcase_04 AC 209 ms
49,348 KB
testcase_05 AC 182 ms
49,244 KB
testcase_06 AC 204 ms
49,268 KB
testcase_07 AC 195 ms
49,204 KB
testcase_08 AC 192 ms
50,556 KB
testcase_09 AC 183 ms
50,624 KB
testcase_10 AC 183 ms
50,528 KB
testcase_11 AC 187 ms
50,528 KB
testcase_12 AC 183 ms
50,692 KB
testcase_13 AC 163 ms
50,516 KB
testcase_14 AC 169 ms
50,564 KB
testcase_15 AC 173 ms
50,572 KB
testcase_16 AC 164 ms
41,000 KB
testcase_17 AC 85 ms
25,472 KB
testcase_18 AC 110 ms
31,160 KB
testcase_19 AC 149 ms
36,224 KB
testcase_20 AC 43 ms
13,824 KB
testcase_21 AC 193 ms
49,556 KB
testcase_22 AC 189 ms
49,964 KB
testcase_23 AC 183 ms
49,872 KB
testcase_24 AC 189 ms
49,432 KB
testcase_25 AC 201 ms
49,436 KB
testcase_26 AC 206 ms
49,436 KB
testcase_27 AC 182 ms
49,392 KB
testcase_28 AC 199 ms
49,532 KB
testcase_29 AC 200 ms
49,512 KB
testcase_30 AC 200 ms
49,372 KB
testcase_31 AC 197 ms
49,304 KB
testcase_32 AC 196 ms
49,268 KB
testcase_33 AC 126 ms
36,156 KB
testcase_34 AC 26 ms
9,752 KB
testcase_35 AC 71 ms
22,656 KB
testcase_36 AC 41 ms
14,080 KB
testcase_37 AC 86 ms
25,856 KB
testcase_38 AC 3 ms
6,816 KB
testcase_39 AC 3 ms
6,816 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 2 ms
6,816 KB
testcase_43 AC 60 ms
17,792 KB
testcase_44 AC 37 ms
12,928 KB
testcase_45 AC 172 ms
42,256 KB
testcase_46 AC 108 ms
28,544 KB
testcase_47 AC 205 ms
46,992 KB
testcase_48 AC 217 ms
49,296 KB
testcase_49 AC 210 ms
49,364 KB
testcase_50 AC 221 ms
49,416 KB
testcase_51 AC 220 ms
49,296 KB
testcase_52 AC 220 ms
49,340 KB
testcase_53 AC 2 ms
6,820 KB
testcase_54 AC 2 ms
6,816 KB
testcase_55 AC 2 ms
6,816 KB
testcase_56 AC 2 ms
6,820 KB
testcase_57 AC 3 ms
6,816 KB
testcase_58 AC 2 ms
6,820 KB
testcase_59 AC 1 ms
6,820 KB
testcase_60 AC 206 ms
49,356 KB
testcase_61 AC 213 ms
49,196 KB
testcase_62 AC 218 ms
49,244 KB
testcase_63 AC 178 ms
49,564 KB
testcase_64 AC 115 ms
33,360 KB
testcase_65 AC 166 ms
46,700 KB
testcase_66 AC 49 ms
16,128 KB
testcase_67 AC 39 ms
13,824 KB
testcase_68 AC 167 ms
50,892 KB
testcase_69 AC 165 ms
50,888 KB
testcase_70 AC 167 ms
50,888 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);
	stack<int> st;
	st.push(0);
	depth[0]=0;
	rep(i,0,2*N){
		int a=st.top();
		st.pop();
		E[a]=i;
		if(a<N){
			st.push(a+N);
			for(auto x:G[a]){
				if(depth[x]==-1){
					depth[x]=depth[a]+1;
					st.push(x);
				}
			}
		}
	}

	int B=0;
	while((1<<B)<N) B++;
	B++;
	vector table(B,vector<int>(N*2));
	rep(i,0,N){
		table[0][E[i]]=depth[i];
		table[0][E[i+N]]=depth[i]-1;
	}
	rep(i,0,B-1) rep(j,0,N*2){
		table[i+1][j]=table[i][j];
		if(j+(1<<i)<N*2) chmin(table[i+1][j],table[i][j+(1<<i)]);
	}
	auto dist=[&](int a,int b) -> int {
		if(E[a]>E[b]) swap(a,b);
		int l=E[a];
		int r=E[b]+1;
		int z=31-__builtin_clz(r-l);
		return depth[a]+depth[b]-2*min(table[z][l],table[z][r-(1<<z)]);
	};

	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