結果
問題 | No.900 aδδitivee |
ユーザー | Kiri8128 |
提出日時 | 2019-10-05 16:08:37 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,214 bytes |
コンパイル時間 | 188 ms |
コンパイル使用メモリ | 13,056 KB |
実行使用メモリ | 66,720 KB |
最終ジャッジ日時 | 2024-10-06 03:00:41 |
合計ジャッジ時間 | 4,755 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
21,924 KB |
testcase_01 | AC | 35 ms
15,104 KB |
testcase_02 | AC | 35 ms
15,232 KB |
testcase_03 | AC | 37 ms
15,232 KB |
testcase_04 | AC | 36 ms
15,104 KB |
testcase_05 | AC | 35 ms
15,232 KB |
testcase_06 | AC | 35 ms
15,104 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
NN = 17 BIT1=[0]*(2**NN+1) BIT2=[0]*(2**NN+1) def addrange(l0, r0, x=1): l, r = l0, r0 while l <= 2**NN: BIT1[l] -= x * l0 BIT2[l] -= x l += l & (-l) while r <= 2**NN: BIT1[r] += x * r0 BIT2[r] += x r += r & (-r) def rangesum(l, r): l0, r0, a, b, c = l, r, 0, 0, 0 while l != 0: a -= BIT1[l] b += BIT2[l] l -= l&(-l) while r != 0: a += BIT1[r] c += BIT2[r] r -= r&(-r) return a + b * l0 - c * r0 BIT3=[0]*(2**NN+1) BIT4=[0]*(2**NN+1) def addrange2(l0, r0, x=1): l, r = l0, r0 while l <= 2**NN: BIT3[l] -= x * l0 BIT4[l] -= x l += l & (-l) while r <= 2**NN: BIT3[r] += x * r0 BIT4[r] += x r += r & (-r) def rangesum2(l, r): l0, r0, a, b, c = l, r, 0, 0, 0 while l != 0: a -= BIT3[l] b += BIT4[l] l -= l&(-l) while r != 0: a += BIT3[r] c += BIT4[r] r -= r&(-r) return a + b * l0 - c * r0 N = int(input()) X = [[] for i in range(N)] for i in range(N-1): x, y, d = map(int, input().split()) X[x].append((y, d)) X[y].append((x, d)) P = [(-1, 0)] * N Q = [(-1, 0), (0, 0)] ET = [] ct = 0 dd = 0 CTA = [0] * N CTB = [0] * N DE = [0] * N D = [0] * N de = -1 while Q: i, d = Q.pop() if i < 0: CTB[~i] = ct de -= 1 dd -= d continue if i >= 0: ct += 1 if CTA[i] == 0: CTA[i] = ct dd += d de += 1 DE[i] = de D[i] = dd for a, d in X[i][::-1]: if a != P[i][0]: ET.append((i, a)) P[a] = (i, d) for k in range(len(X[a])): if X[a][k][0] == i: del X[a][k] break Q.append((~a, d)) Q.append((a, d)) for _ in range(int(input())): tmp = [int(a) for a in input().split()] if tmp[0] == 1: a, x = tmp[1:] addrange(CTA[a]+1, CTB[a]+1, x) addrange2(CTA[a]+1, CTB[a]+1, x * DE[a]) else: b = tmp[1] print(D[b] + rangesum(CTA[b], CTA[b]+1) * DE[b] - rangesum2(CTA[b], CTA[b]+1))