結果

問題 No.2634 Tree Distance 3
ユーザー ゼットゼット
提出日時 2024-02-16 23:34:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,788 ms / 3,000 ms
コード長 1,713 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,988 KB
実行使用メモリ 224,620 KB
最終ジャッジ日時 2024-09-28 22:34:59
合計ジャッジ時間 73,854 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,284 ms
204,784 KB
testcase_01 AC 1,262 ms
215,892 KB
testcase_02 AC 1,170 ms
215,636 KB
testcase_03 AC 1,210 ms
215,040 KB
testcase_04 AC 1,181 ms
205,024 KB
testcase_05 AC 1,352 ms
156,060 KB
testcase_06 AC 1,329 ms
156,188 KB
testcase_07 AC 1,374 ms
156,684 KB
testcase_08 AC 1,063 ms
218,060 KB
testcase_09 AC 1,080 ms
218,272 KB
testcase_10 AC 1,084 ms
217,868 KB
testcase_11 AC 1,048 ms
218,356 KB
testcase_12 AC 1,109 ms
218,716 KB
testcase_13 AC 1,168 ms
159,124 KB
testcase_14 AC 1,194 ms
159,100 KB
testcase_15 AC 1,193 ms
158,616 KB
testcase_16 AC 1,056 ms
190,548 KB
testcase_17 AC 644 ms
139,008 KB
testcase_18 AC 839 ms
155,668 KB
testcase_19 AC 900 ms
173,660 KB
testcase_20 AC 348 ms
108,640 KB
testcase_21 AC 1,690 ms
157,720 KB
testcase_22 AC 1,540 ms
158,104 KB
testcase_23 AC 1,494 ms
158,100 KB
testcase_24 AC 1,394 ms
219,160 KB
testcase_25 AC 1,408 ms
219,132 KB
testcase_26 AC 1,361 ms
218,600 KB
testcase_27 AC 1,788 ms
158,468 KB
testcase_28 AC 1,536 ms
157,328 KB
testcase_29 AC 1,575 ms
158,228 KB
testcase_30 AC 1,544 ms
157,612 KB
testcase_31 AC 1,570 ms
157,852 KB
testcase_32 AC 1,468 ms
157,208 KB
testcase_33 AC 972 ms
128,900 KB
testcase_34 AC 309 ms
89,616 KB
testcase_35 AC 609 ms
109,268 KB
testcase_36 AC 414 ms
97,064 KB
testcase_37 AC 698 ms
114,620 KB
testcase_38 AC 125 ms
79,120 KB
testcase_39 AC 126 ms
78,800 KB
testcase_40 AC 116 ms
78,436 KB
testcase_41 AC 111 ms
78,520 KB
testcase_42 AC 115 ms
78,524 KB
testcase_43 AC 520 ms
121,132 KB
testcase_44 AC 352 ms
106,848 KB
testcase_45 AC 1,121 ms
188,048 KB
testcase_46 AC 759 ms
152,648 KB
testcase_47 AC 1,274 ms
218,540 KB
testcase_48 AC 1,311 ms
197,284 KB
testcase_49 AC 1,325 ms
200,824 KB
testcase_50 AC 1,287 ms
198,524 KB
testcase_51 AC 1,292 ms
197,284 KB
testcase_52 AC 1,349 ms
198,880 KB
testcase_53 AC 107 ms
78,240 KB
testcase_54 AC 120 ms
78,200 KB
testcase_55 AC 107 ms
78,412 KB
testcase_56 AC 93 ms
77,736 KB
testcase_57 AC 108 ms
78,344 KB
testcase_58 AC 39 ms
54,644 KB
testcase_59 AC 40 ms
55,740 KB
testcase_60 AC 1,242 ms
215,108 KB
testcase_61 AC 1,263 ms
205,080 KB
testcase_62 AC 1,220 ms
203,612 KB
testcase_63 AC 1,011 ms
224,620 KB
testcase_64 AC 651 ms
173,468 KB
testcase_65 AC 939 ms
213,680 KB
testcase_66 AC 333 ms
121,232 KB
testcase_67 AC 300 ms
113,536 KB
testcase_68 AC 942 ms
159,264 KB
testcase_69 AC 975 ms
159,504 KB
testcase_70 AC 982 ms
159,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
G=[[] for i in range(N)]
for i in range(N-1):
  a,b=map(int,input().split())
  G[a-1].append(b-1)
  G[b-1].append(a-1)
p=[[0]*N for i in range(20)]
dist=[-1]*N
from collections import deque
S=deque()
S.append(0)
dist[0]=0
while S:
  x=S.pop()
  for y in G[x]:
    if dist[y]>=0:
      continue
    dist[y]=dist[x]+1
    p[0][y]=x
    S.append(y)
for k in range(1,20):
  for i in range(N):
    p[k][i]=p[k-1][p[k-1][i]]
def LCA(a,b):
  x=a
  y=b
  if dist[x]>dist[y]:
    x,y=y,x
  u=dist[y]-dist[x]
  for k in range(20):
    if (u>>k)&1:
      y=p[k][y]
  if x==y:
    return x
  for k in range(19,-1,-1):
    if p[k][x]!=p[k][y]:
      x=p[k][x]
      y=p[k][y]
  y=p[0][y]
  return y
T={}
B=set()
for i in range(N):
  B.add(A[i])
B=list(B)
B.sort()
M=len(B)
for i in range(M):
  T[B[i]]=i
R=[[] for i in range(M)]
for i in range(N):
  R[T[A[i]]].append(i)
result=[0]*N
pos1=-1
pos2=-1
z=0
for i in range(M-1,-1,-1):
  for y in R[i]:
    if pos1==-1:
      pos1=y
    elif pos2==-1:
      pos2=y
      l=LCA(pos1,pos2)
      d=dist[pos1]+dist[pos2]-2*dist[l]
      z=d
      result[y]=d
    else:
      l1=LCA(pos1,y)
      l2=LCA(pos2,y)
      d1=dist[pos1]+dist[y]-2*dist[l1]
      d2=dist[pos2]+dist[y]-2*dist[l2]
      result[y]=max(d1,d2)
      if max(d1,d2)>z:
        z=max(d1,d2)
        if d1>=d2:
          pos2=y
        else:
          pos1=y
  if len(R[i])>1:
    for y in R[i]:
      l1=LCA(pos1,y)
      l2=LCA(pos2,y)
      d1=dist[pos1]+dist[y]-2*dist[l1]
      d2=dist[pos2]+dist[y]-2*dist[l2]
      result[y]=max(d1,d2)
      if max(d1,d2)>z:
        z=max(d1,d2)
        if d1>=d2:
          pos2=y
        else:
          pos1=y
print(*result)
0