結果
| 問題 |
No.1054 Union add query
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-11-09 03:50:00 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,562 bytes |
| コンパイル時間 | 456 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 109,172 KB |
| 最終ジャッジ日時 | 2024-11-27 23:58:04 |
| 合計ジャッジ時間 | 27,068 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | TLE * 8 |
ソースコード
import numpy as np
class DJSet():
def __init__(self, n):
self.upper = np.empty((n), int)
self.weight = np.empty((n), int)
for i in range(n):
self.upper[i] = -1
self.weight[i] = 0
def equiv(self, x, y):
return self.root(x) == self.root(y)
def root(self, x):
if self.upper[x] < 0:
return x
else:
return self.root(self.upper[x])
def get_weight(self, x):
if self.upper[x] < 0:
return self.weight[x]
else:
return self.weight[x] + self.get_weight(self.upper[x])
def setUnion(self, x, y):
x = self.root(x)
y = self.root(y)
if x == y:
return
if self.upper[x] < self.upper[y]:
x ^= y
y ^= x
x ^= y
self.upper[y] = self.upper[y] + self.upper[x]
self.upper[x] = y
self.weight[x] = self.weight[x] - self.weight[y]
def add_weight(self, x, w):
x = self.root(x)
self.weight[x] = self.weight[x] + w
def run():
N, Q = input().split(" ")
N = int(N)
Q = int(Q)
ds = DJSet(N)
for q in range(Q):
T, A, B = input().split(" ")
T = int(T)
A = int(A)
B = int(B)
A = A - 1
if (T == 1):
B = B - 1
if (ds.equiv(A, B)):
continue
ds.setUnion(A, B)
elif (T == 2):
ds.add_weight(A, B)
elif (T == 3):
print(ds.get_weight(A))
run()