結果

問題 No.2634 Tree Distance 3
ユーザー maksimmaksim
提出日時 2024-02-16 22:06:37
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 2,331 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 178,916 KB
実行使用メモリ 85,052 KB
最終ジャッジ日時 2024-09-28 20:25:46
合計ジャッジ時間 44,307 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 675 ms
76,396 KB
testcase_01 AC 648 ms
78,560 KB
testcase_02 AC 640 ms
78,892 KB
testcase_03 AC 632 ms
77,624 KB
testcase_04 WA -
testcase_05 AC 638 ms
78,996 KB
testcase_06 AC 660 ms
78,756 KB
testcase_07 AC 643 ms
76,140 KB
testcase_08 AC 550 ms
77,748 KB
testcase_09 AC 565 ms
77,008 KB
testcase_10 AC 578 ms
78,068 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 551 ms
78,040 KB
testcase_14 AC 548 ms
76,888 KB
testcase_15 AC 557 ms
77,024 KB
testcase_16 AC 798 ms
74,204 KB
testcase_17 WA -
testcase_18 AC 609 ms
63,420 KB
testcase_19 WA -
testcase_20 AC 196 ms
43,504 KB
testcase_21 AC 1,042 ms
82,836 KB
testcase_22 AC 1,055 ms
84,104 KB
testcase_23 AC 1,053 ms
85,052 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1,056 ms
81,024 KB
testcase_27 AC 1,097 ms
77,372 KB
testcase_28 AC 1,057 ms
79,456 KB
testcase_29 WA -
testcase_30 AC 728 ms
76,868 KB
testcase_31 AC 743 ms
78,276 KB
testcase_32 AC 725 ms
77,660 KB
testcase_33 AC 427 ms
62,892 KB
testcase_34 AC 88 ms
37,548 KB
testcase_35 AC 244 ms
49,192 KB
testcase_36 AC 140 ms
40,876 KB
testcase_37 AC 282 ms
55,524 KB
testcase_38 AC 15 ms
31,340 KB
testcase_39 AC 15 ms
30,776 KB
testcase_40 AC 14 ms
30,364 KB
testcase_41 AC 14 ms
31,548 KB
testcase_42 AC 14 ms
31,328 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 618 ms
68,408 KB
testcase_46 AC 383 ms
58,212 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 742 ms
77,644 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 14 ms
30,772 KB
testcase_57 AC 15 ms
29,780 KB
testcase_58 AC 11 ms
30,476 KB
testcase_59 AC 11 ms
30,120 KB
testcase_60 AC 652 ms
77,516 KB
testcase_61 WA -
testcase_62 AC 631 ms
76,960 KB
testcase_63 AC 494 ms
76,488 KB
testcase_64 AC 320 ms
62,256 KB
testcase_65 AC 470 ms
72,492 KB
testcase_66 AC 135 ms
45,492 KB
testcase_67 AC 105 ms
40,804 KB
testcase_68 AC 534 ms
78,316 KB
testcase_69 AC 537 ms
78,112 KB
testcase_70 AC 529 ms
76,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define int long long
#define app push_back
#define all(x) (x).begin(),(x).end()
#ifdef LOCAL
#define debug(...) [](auto...a){ ((cout << a << ' '), ...) << endl;}(#__VA_ARGS__, ":", __VA_ARGS__)
#else
#define debug(...)
#endif
#ifdef LOCAL
#define __int128 long long
#endif // LOCAL
const int maxn=1e6+5;
vector<int> a[maxn];
int c[maxn];
bool used[maxn];
int corn[maxn];
int u[maxn][20];
int res[maxn];
pair<int,int> cur={-1,-1};
void dfs(int x)
{
    used[x]=true;
    for(int i=1;i<20;++i) {u[x][i]=u[u[x][i-1]][i-1];}
    for(int v:a[x])
    {
        if(!used[v])
        {
            u[v][0]=x;
            corn[v]=corn[x]+1;
            dfs(v);
        }
    }
    used[x]=false;
}
int lca(int x,int y)
{
    for(int i=19;i>=0;--i) {if(corn[x]>=corn[y]+(1<<i)) x=u[x][i];}
    for(int i=19;i>=0;--i) {if(corn[y]>=corn[x]+(1<<i)) y=u[y][i];}
    for(int i=19;i>=0;--i) {if(u[x][i]!=u[y][i]) {x=u[x][i];y=u[y][i];}}
    if(x!=y) {x=u[x][0];y=u[y][0];}
    return x;
}
int dist(int x,int y)
{
    return corn[x]+corn[y]-2*corn[lca(x,y)];
}
void add(int pos)
{
    if(cur.first==(-1)) {cur.first=pos;return;}
    if(cur.second==(-1)) {cur.second=pos;return;}
    int was=dist(cur.first,cur.second);int x1=dist(cur.first,pos);int x2=dist(cur.second,pos);
    int ma=max({was,x1,x2});
    if(was==ma) return;
    if(x1==ma) {cur={cur.first,pos};return;}
    cur={pos,cur.second};
}
int get(int pos)
{
    return max(dist(pos,cur.first),dist(pos,cur.second));
}
int32_t main()
{
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    int n;cin>>n;
    for(int i=0;i<n;++i) cin>>c[i];
    for(int i=0;i<n-1;++i) {int x,y;cin>>x>>y;--x;--y;a[x].app(y);a[y].app(x);}
    vector<int> v(n);iota(all(v),0LL);sort(all(v),[&](int i,int j) {return make_pair(c[i],i)<make_pair(c[j],j);});
    dfs(0);
    for(int i=n-1;i>=0;--i)
    {
        int pos=v[i];
        if(i==n-1) {add(pos);continue;}
        res[pos]=max(res[pos],get(pos));
        add(pos);
    }
    cur={-1,-1};
    sort(all(v),[&](int i,int j) {return make_pair(c[i],-i)<make_pair(c[j],-j);});
    for(int i=n-1;i>=0;--i)
    {
        int pos=v[i];
        if(i==n-1) {add(pos);continue;}
        res[pos]=max(res[pos],get(pos));
        add(pos);
    }
    for(int i=0;i<n;++i) cout<<res[i]<<' ';
    return 0;
}
0