結果

問題 No.1054 Union add query
ユーザー 37zigen37zigen
提出日時 2019-11-09 04:07:32
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 1,661 ms / 2,000 ms
コード長 1,612 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 11,012 KB
実行使用メモリ 37,820 KB
最終ジャッジ日時 2023-08-18 17:18:13
合計ジャッジ時間 14,330 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
29,732 KB
testcase_01 AC 130 ms
29,672 KB
testcase_02 AC 130 ms
29,712 KB
testcase_03 AC 1,624 ms
31,428 KB
testcase_04 AC 1,511 ms
37,820 KB
testcase_05 AC 1,574 ms
30,656 KB
testcase_06 AC 1,661 ms
32,716 KB
testcase_07 AC 1,630 ms
32,884 KB
testcase_08 AC 1,605 ms
32,896 KB
testcase_09 AC 1,196 ms
37,744 KB
testcase_10 AC 860 ms
37,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

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 = map(int, readline().split())
    ds = DJSet(N)
    for q in range(Q):
        T, A, B = map(int, readline().split())
        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()
0