結果

問題 No.898 tri-βutree
ユーザー nessiennessien
提出日時 2024-11-24 13:19:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,857 ms / 4,000 ms
コード長 1,438 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 188,248 KB
最終ジャッジ日時 2024-11-24 13:19:52
合計ジャッジ時間 49,775 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,599 ms
188,248 KB
testcase_01 AC 34 ms
53,228 KB
testcase_02 AC 72 ms
75,768 KB
testcase_03 AC 65 ms
72,764 KB
testcase_04 AC 71 ms
75,884 KB
testcase_05 AC 67 ms
73,092 KB
testcase_06 AC 77 ms
75,612 KB
testcase_07 AC 2,715 ms
118,444 KB
testcase_08 AC 2,852 ms
117,796 KB
testcase_09 AC 2,779 ms
117,692 KB
testcase_10 AC 2,714 ms
117,556 KB
testcase_11 AC 2,801 ms
119,012 KB
testcase_12 AC 2,717 ms
118,168 KB
testcase_13 AC 2,719 ms
117,436 KB
testcase_14 AC 2,796 ms
117,756 KB
testcase_15 AC 2,694 ms
118,056 KB
testcase_16 AC 2,857 ms
117,524 KB
testcase_17 AC 2,811 ms
117,536 KB
testcase_18 AC 2,611 ms
117,804 KB
testcase_19 AC 2,732 ms
117,720 KB
testcase_20 AC 2,745 ms
117,356 KB
testcase_21 AC 2,644 ms
117,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(120000)

class segment_tree:
	def __init__(self,n):
		self.size = 1
		while self.size < n:
			self.size *= 2 
		self.dat = [0]*(self.size*2) 
	
	def update(self,pos,x):
		pos += self.size
		self.dat[pos] = x 
		while pos >= 2:
			pos //= 2 
			self.dat[pos] = min(self.dat[pos*2], self.dat[pos*2+1])
	
	def query(self,l,r,a,b,u):
		if r <= a or b <= l:
			return 10**15
		if l <= a and b <= r:
			return self.dat[u]
		m = (a+b)//2 
		answerl = self.query(l,r,a,m,u*2)
		answerr = self.query(l,r,m,b,u*2+1)
		return min(answerl,answerr)
	
N = int(input())

G = [list() for i in range(N)]
for i in range(N-1):
	u, v, w = map(int,input().split())
	G[u].append((v,w))
	G[v].append((u,w))

def dfs(i,k):
	visited[i] = True
	place[i] = len(dist)
	dist.append(k)
	for e in G[i]:
		if visited[e[0]] == False:
			dfs(e[0],k+e[1])
			dist.append(k)

visited = [False]*N 
place = [None]*N 
dist = []
dfs(0,0)

st = segment_tree(len(dist))
for i in range(len(dist)):
	st.update(i,dist[i])
	
Q = int(input())
for i in range(Q):
	x, y, z = map(int,input().split())
	l1 = min(place[x],place[y])
	r1 = max(place[x],place[y])
	l2 = min(place[x],place[z])
	r2 = max(place[x],place[z])
	l3 = min(place[y],place[z])
	r3 = max(place[y],place[z])
	v1 = st.query(l1,r1+1,0,st.size,1)
	v2 = st.query(l2,r2+1,0,st.size,1)
	v3 = st.query(l3,r3+1,0,st.size,1)
	print(dist[place[x]] + dist[place[y]] + dist[place[z]] - v1 - v2 - v3)
0