結果

問題 No.2290 UnUnion Find
ユーザー vwxyzvwxyz
提出日時 2023-05-05 23:41:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 3,028 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 270,980 KB
最終ジャッジ日時 2024-05-02 18:59:01
合計ジャッジ時間 11,079 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,520 KB
testcase_01 AC 47 ms
54,016 KB
testcase_02 AC 221 ms
77,568 KB
testcase_03 AC 274 ms
92,032 KB
testcase_04 AC 289 ms
92,160 KB
testcase_05 AC 272 ms
92,288 KB
testcase_06 AC 269 ms
92,160 KB
testcase_07 AC 303 ms
92,288 KB
testcase_08 AC 305 ms
92,032 KB
testcase_09 AC 296 ms
91,904 KB
testcase_10 AC 280 ms
92,032 KB
testcase_11 AC 300 ms
91,904 KB
testcase_12 AC 302 ms
92,288 KB
testcase_13 AC 296 ms
92,416 KB
testcase_14 AC 300 ms
91,904 KB
testcase_15 AC 309 ms
92,416 KB
testcase_16 AC 287 ms
92,032 KB
testcase_17 AC 299 ms
92,288 KB
testcase_18 AC 308 ms
92,288 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
from collections import defaultdict

class UnionFind:
    def __init__(self,N,label=None,f=None,weighted=False):
        self.N=N
        self.parents=[None]*self.N
        self.size=[1]*self.N
        self.roots={i for i in range(self.N)}
        self.label=label
        if self.label!=None:
            self.label=[x for x in label]
        self.f=f
        self.weighted=weighted
        if self.weighted:
            self.weight=[0]*self.N

    def Find(self,x):
        stack=[]
        while self.parents[x]!=None:
            stack.append(x)
            x=self.parents[x]
        if self.weighted:
            w=0
            for y in stack[::-1]:
                self.parents[y]=x
                w+=self.weight[y]
                self.weight[y]=w
        else:
            for y in stack[::-1]:
                self.parents[y]=x
        return x

    def Union(self,x,y,w=None):
        root_x=self.Find(x)
        root_y=self.Find(y)
        if root_x==root_y:
            if self.weighted:
                if self.weight[y]-self.weight[x]==w:
                    return True
                else:
                    return False
        else:
            if self.size[root_x]<self.size[root_y]:
                x,y=y,x
                root_x,root_y=root_y,root_x
                if self.weighted:
                    w=-w
            self.parents[root_y]=root_x
            self.size[root_x]+=self.size[root_y]
            self.roots.remove(root_y)
            if self.label!=None:
                self.label[root_x]=self.f(self.label[root_x],self.label[root_y])
            if self.weighted:
                self.weight[root_y]=w+self.weight[x]-self.weight[y]

    def Size(self,x):
        return self.size[self.Find(x)]

    def Same(self,x,y):
        return self.Find(x)==self.Find(y)

    def Label(self,x):
        return self.label[self.Find(x)]

    def Weight(self,x,y):
        root_x=self.Find(x)
        root_y=self.Find(y)
        if root_x!=root_y:
            return None
        return self.weight[y]-self.weight[x]

    def Roots(self):
        return list(self.roots)

    def Linked_Components_Count(self):
        return len(self.roots)

    def Linked_Components(self):
        linked_components=defaultdict(int)
        for x in range(self.N):
            linked_components[self.Find(x)].append(x)
        return linked_components

    def __str__(self):
        linked_components=defaultdict(list)
        for x in range(self.N):
            linked_components[self.Find(x)].append(x)
        return "\n".join(f"{r}: {m}" for r,m in linked_components.items())

N,Q=map(int,readline().split())
UF=UnionFind(N)
for q in range(Q):
    query=tuple(map(int,readline().split()))
    if query[0]==1:
        _,u,v=query
        u-=1;v-=1
        UF.Union(u,v)
    else:
        _,u=query
        u-=1
        for r in UF.Roots():
            if not UF.Same(u,r):
                ans=r+1
                break
        else:
            ans=-1
        print(ans)
0