結果

問題 No.898 tri-βutree
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-17 08:43:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,454 ms / 4,000 ms
コード長 2,512 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 234,988 KB
最終ジャッジ日時 2025-01-02 10:30:59
合計ジャッジ時間 25,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 834 ms
234,988 KB
testcase_01 AC 36 ms
54,496 KB
testcase_02 AC 45 ms
63,820 KB
testcase_03 AC 50 ms
63,768 KB
testcase_04 AC 47 ms
64,472 KB
testcase_05 AC 44 ms
63,188 KB
testcase_06 AC 44 ms
63,740 KB
testcase_07 AC 1,332 ms
155,112 KB
testcase_08 AC 1,366 ms
155,104 KB
testcase_09 AC 1,357 ms
155,736 KB
testcase_10 AC 1,347 ms
155,464 KB
testcase_11 AC 1,330 ms
154,976 KB
testcase_12 AC 1,383 ms
155,572 KB
testcase_13 AC 1,289 ms
154,828 KB
testcase_14 AC 1,454 ms
155,144 KB
testcase_15 AC 1,306 ms
155,724 KB
testcase_16 AC 1,375 ms
155,124 KB
testcase_17 AC 1,268 ms
155,168 KB
testcase_18 AC 1,281 ms
155,080 KB
testcase_19 AC 1,298 ms
155,308 KB
testcase_20 AC 1,341 ms
155,384 KB
testcase_21 AC 1,304 ms
153,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main0(n,uvw,q,xyz):
  ki=[[] for _ in range(n)]
  for u,v,w in uvw:
    ki[u].append([v,w])
    ki[v].append([u,w])
  
import sys
sys.setrecursionlimit(10**7)
def main1(n,uvw,q,xyz):
  ki=[[] for _ in range(n)]
  for u,v,w in uvw:
    ki[u].append([v,w])
    ki[v].append([u,w])

  S=[] # Euler Tour
  F=[0]*n # F[v]:vにはじめて訪れるステップ
  depth=[0]*n # 0を根としたときの深さ
  weight=[0]*n
  def dfs(v,pare,d):
      F[v]=len(S)
      depth[v]=d
      S.append(v)
      for u,w in ki[v]:
          if u==pare:continue
          weight[u]=weight[v]+w
          dfs(u,v,d+1)
          S.append(v)
  dfs(0,-1,0)
  # Sをセグメント木に乗せる
  # u,vのLCAを求める:S[F[u]:F[v]+1]のなかでdepthが最小の頂点を探せば良い
  # F[u]:uに初めてたどるつくステップ
  # S[F[u]:F[v]+1]:はじめてuにたどり着いてつぎにvにたどるつくまでに訪れる頂点
  # 存在しない範囲は深さが他よりも大きくなるようにする
  INF = (n, None)
  # LCAを計算するクエリの前計算
  M = 2*n
  M0 = 2**(M-1).bit_length() # M以上で最小の2のべき乗
  data = [INF]*(2*M0)
  for i, v in enumerate(S):
    data[M0-1+i] = (depth[v], i)
  for i in range(M0-2, -1, -1):
    data[i] = min(data[2*i+1], data[2*i+2])
  # LCAの計算 (generatorで最小値を求める)
  def _query(a, b):
    yield INF
    a += M0; b += M0
    while a < b:
      if b & 1:
        b -= 1
        yield data[b-1]
      if a & 1:
        yield data[a-1]
        a += 1
      a >>= 1; b >>= 1
  # LCAの計算 (外から呼び出す関数)
  def query(u, v):
    fu = F[u]; fv = F[v]
    if fu > fv:
      fu, fv = fv, fu
    return S[min(_query(fu, fv+1))[1]]
  
  ret=[]
  for x,y,z in xyz:
    a=query(x,y)
    b=query(y,z)
    c=query(z,x)
    if a==b==c:
      tmp=weight[x]
      tmp+=weight[y]
      tmp+=weight[z]
      tmp-=weight[a]*3
    else:
      if a==b:
        d=a
        e=c
      elif b==c:
        d=b
        e=a
      elif a==c:
        d=a
        e=b
      tmp=weight[x]
      tmp+=weight[y]
      tmp+=weight[z]
      tmp-=weight[e]
      tmp-=weight[d]*2
      #print((x,y,z),(a,b,c),(d,e),tmp)
    ret.append(tmp)
  #print(weight)
  return ret

if __name__=='__main__':
  n=int(input())
  uvw=[list(map(int,input().split())) for _ in range(n-1)]
  q=int(input())
  xyz=[list(map(int,input().split())) for _ in range(q)]
  #ret0=main0(n,uvw,q,xyz)
  ret1=main1(n,uvw,q,xyz)
  #print(ret0)
  print(*ret1,sep="\n")


0