結果
問題 | No.2634 Tree Distance 3 |
ユーザー | PersistentLife |
提出日時 | 2024-02-16 21:51:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,599 bytes |
コンパイル時間 | 1,960 ms |
コンパイル使用メモリ | 178,676 KB |
実行使用メモリ | 265,864 KB |
最終ジャッジ日時 | 2024-09-28 20:06:12 |
合計ジャッジ時間 | 25,324 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 97 ms
80,948 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 51 ms
67,520 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | TLE | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
ソースコード
/* Things to notice: 1. do not calculate useless values 2. do not use similar names Things to check: 1. submit the correct file 2. time (it is log^2 or log) 3. memory 4. prove your naive thoughts 5. long long 6. corner case like n=0,1,inf or n=m 7. check if there is a mistake in the ds or other tools you use 8. fileio in some oi-contest 9. module on time 10. the number of a same divisor in a math problem 11. multi-information and queries for dp and ds problems */ #include<bits/stdc++.h> using namespace std; #define int long long #define fi first #define se second #define pii pair<long long,long long> #define mp make_pair #define pb push_back const int mod=998244353; const int inf=0x3f3f3f3f; const int INF=1e18; vector <pii > g[200005]; struct LCA { int dep[200005],dfn[200005],times; int dist[200005]; int st[20][400005],Lg[400005]; void dfs(int u,int fa) { dfn[u]=++times,st[0][times]=u; for(int i=0;i<g[u].size();i++) { int v=g[u][i].fi; if(v==fa) continue; dep[v]=dep[u]+1,dist[v]=dist[u]+1LL*g[u][i].se,dfs(v,u); st[0][++times]=u; } } int mindep(int x,int y) { if(dep[x]<dep[y]) return x; return y; } void build() { times=0,dep[1]=dist[1]=0; dfs(1,-1); Lg[1]=0,Lg[2]=1; for(int i=3;i<=times;i++) Lg[i]=Lg[i/2]+1; for(int k=1;k<20;k++) for(int i=1;i+(1<<k)-1<=times;i++) st[k][i]=mindep(st[k-1][i],st[k-1][i+(1<<(k-1))]); } int getlca(int u,int v) { u=dfn[u],v=dfn[v]; if(u>v) swap(u,v); int s=Lg[v-u+1]; return mindep(st[s][u],st[s][v-(1<<s)+1]); } int getdis(int u,int v) { int l=getlca(u,v); return dist[u]+dist[v]-2LL*dist[l]; } }Lca; int n; int a[100005],ans[100005]; pii b[100005]; void solve() { cin>>n; for(int i=1;i<=n;i++) cin>>a[i],b[i]=mp(a[i],i); sort(b+1,b+1+n),reverse(b+1,b+1+n); for(int i=1;i<n;i++) { int u,v; cin>>u>>v; g[u].pb(mp(v,1)),g[v].pb(mp(u,1)); } Lca.build(); pii diam=mp(-1,-1); for(int i=1;i<=n;i++) { int j=i; while(j+1<=n&&b[j+1].fi==b[j].fi) j++; for(int l=i;l<=j;l++) { int u=b[l].se; if(diam==mp(-1LL,-1LL)) diam=mp(u,u); else { int x=diam.fi,y=diam.se; if(Lca.getdis(u,x)>=Lca.getdis(x,y)&&Lca.getdis(u,x)>=Lca.getdis(u,y)) diam=mp(u,x); else if(Lca.getdis(u,y)>=Lca.getdis(x,y)&&Lca.getdis(u,y)>=Lca.getdis(u,x)) diam=mp(u,y); else diam=mp(x,y); } } for(int l=i;l<=j;l++) { int u=b[l].se; ans[u]=max(Lca.getdis(u,diam.fi),Lca.getdis(u,diam.se)); } } for(int i=1;i<=n;i++) cout<<ans[i]<<" "; } signed main() { ios::sync_with_stdio(0); cin.tie(0); int _=1; // cin>>_; while(_--) solve(); return 0; }