結果

問題 No.2290 UnUnion Find
ユーザー navel_tosnavel_tos
提出日時 2023-06-01 12:12:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 804 ms / 2,000 ms
コード長 1,208 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 112,452 KB
最終ジャッジ日時 2024-12-28 14:54:25
合計ジャッジ時間 35,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 559 ms
77,696 KB
testcase_03 AC 488 ms
93,440 KB
testcase_04 AC 490 ms
93,872 KB
testcase_05 AC 489 ms
93,696 KB
testcase_06 AC 505 ms
93,780 KB
testcase_07 AC 530 ms
93,696 KB
testcase_08 AC 537 ms
93,824 KB
testcase_09 AC 534 ms
93,696 KB
testcase_10 AC 511 ms
93,824 KB
testcase_11 AC 543 ms
93,568 KB
testcase_12 AC 499 ms
93,760 KB
testcase_13 AC 513 ms
93,824 KB
testcase_14 AC 536 ms
93,696 KB
testcase_15 AC 528 ms
93,568 KB
testcase_16 AC 501 ms
93,696 KB
testcase_17 AC 515 ms
93,696 KB
testcase_18 AC 512 ms
93,568 KB
testcase_19 AC 760 ms
94,976 KB
testcase_20 AC 764 ms
112,452 KB
testcase_21 AC 745 ms
79,100 KB
testcase_22 AC 763 ms
85,360 KB
testcase_23 AC 773 ms
84,864 KB
testcase_24 AC 638 ms
103,168 KB
testcase_25 AC 743 ms
81,536 KB
testcase_26 AC 636 ms
105,984 KB
testcase_27 AC 735 ms
102,784 KB
testcase_28 AC 767 ms
91,136 KB
testcase_29 AC 785 ms
99,712 KB
testcase_30 AC 804 ms
80,592 KB
testcase_31 AC 756 ms
97,280 KB
testcase_32 AC 752 ms
82,728 KB
testcase_33 AC 784 ms
89,472 KB
testcase_34 AC 747 ms
112,000 KB
testcase_35 AC 789 ms
105,856 KB
testcase_36 AC 796 ms
82,568 KB
testcase_37 AC 800 ms
88,192 KB
testcase_38 AC 764 ms
82,944 KB
testcase_39 AC 769 ms
86,208 KB
testcase_40 AC 783 ms
103,808 KB
testcase_41 AC 788 ms
80,884 KB
testcase_42 AC 788 ms
95,616 KB
testcase_43 AC 803 ms
92,800 KB
testcase_44 AC 501 ms
93,696 KB
testcase_45 AC 554 ms
93,696 KB
testcase_46 AC 568 ms
93,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder2290 UnUnion Find

#UnionFind
class UnionFind:
    def __init__(self,N): self._parent=[-1 for i in[0]*N]; self._Plist=set([i for i in range(N)])
    def find(self,v):  #頂点vの親を探し、経路圧縮する
        vertices=[]
        while self._parent[v]>=0: vertices.append(v);v=self._parent[v]
        for i in vertices: self._parent[i]=v
        return v
    def unite(self,x,y):  #頂点xとyを併合し、併合の有無を返す
        x,y = self.find(x),self.find(y)
        if x==y: return 0
        if self._parent[x]>self._parent[y]: x,y=y,x  #負値で管理
        self._parent[x]+=self._parent[y]; self._parent[y]=x
        self._Plist.discard(y); return 1
    def same(self,x,y):return self.find(x)==self.find(y)   #xとyは同一集合か返す
    def size(self,x):  return -self._parent[self.find(x)]  #xの集合のサイズを求める
    def check(self): return self._Plist


f=lambda:list(map(int,input().split()))
N,Q=f(); UF=UnionFind(N)
for _ in range(Q):
    t,u,*v=f(); u-=1
    if t==1: v=v[0]-1; UF.unite(u,v)
    if t==2:
        x=UF.check(); u=UF.find(u)
        if len(x)==1: print(-1); continue
        for i in x:
            if i!=u: print(i+1); break
0