結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 543 ms
77,696 KB
testcase_03 AC 488 ms
93,952 KB
testcase_04 AC 487 ms
93,824 KB
testcase_05 AC 500 ms
93,952 KB
testcase_06 AC 492 ms
93,440 KB
testcase_07 AC 507 ms
93,696 KB
testcase_08 AC 518 ms
94,080 KB
testcase_09 AC 549 ms
93,696 KB
testcase_10 AC 522 ms
94,080 KB
testcase_11 AC 522 ms
93,952 KB
testcase_12 AC 485 ms
93,568 KB
testcase_13 AC 494 ms
94,080 KB
testcase_14 AC 500 ms
93,568 KB
testcase_15 AC 516 ms
93,696 KB
testcase_16 AC 491 ms
93,824 KB
testcase_17 AC 496 ms
93,696 KB
testcase_18 AC 495 ms
93,952 KB
testcase_19 AC 750 ms
95,360 KB
testcase_20 AC 742 ms
112,256 KB
testcase_21 AC 717 ms
79,224 KB
testcase_22 AC 760 ms
85,248 KB
testcase_23 AC 744 ms
85,120 KB
testcase_24 AC 612 ms
103,296 KB
testcase_25 AC 724 ms
81,664 KB
testcase_26 AC 618 ms
106,368 KB
testcase_27 AC 715 ms
103,168 KB
testcase_28 AC 719 ms
91,136 KB
testcase_29 AC 745 ms
99,840 KB
testcase_30 AC 760 ms
81,044 KB
testcase_31 AC 722 ms
97,280 KB
testcase_32 AC 738 ms
82,688 KB
testcase_33 AC 752 ms
89,600 KB
testcase_34 AC 715 ms
112,256 KB
testcase_35 AC 745 ms
106,240 KB
testcase_36 AC 744 ms
82,944 KB
testcase_37 AC 744 ms
88,064 KB
testcase_38 AC 763 ms
83,200 KB
testcase_39 AC 703 ms
86,144 KB
testcase_40 AC 741 ms
103,936 KB
testcase_41 AC 753 ms
81,152 KB
testcase_42 AC 742 ms
95,744 KB
testcase_43 AC 735 ms
93,056 KB
testcase_44 AC 488 ms
93,824 KB
testcase_45 AC 544 ms
93,824 KB
testcase_46 AC 568 ms
93,952 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