結果

問題 No.2290 UnUnion Find
ユーザー navel_tosnavel_tos
提出日時 2023-06-01 12:11:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,194 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 112,512 KB
最終ジャッジ日時 2024-06-08 21:34:57
合計ジャッジ時間 31,262 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 WA -
testcase_02 AC 499 ms
76,160 KB
testcase_03 AC 457 ms
93,952 KB
testcase_04 AC 459 ms
93,952 KB
testcase_05 AC 463 ms
93,824 KB
testcase_06 AC 479 ms
93,824 KB
testcase_07 AC 488 ms
93,564 KB
testcase_08 AC 477 ms
94,080 KB
testcase_09 AC 484 ms
93,628 KB
testcase_10 AC 455 ms
93,580 KB
testcase_11 AC 487 ms
93,496 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 484 ms
93,988 KB
testcase_15 AC 491 ms
93,492 KB
testcase_16 AC 458 ms
93,584 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 675 ms
94,972 KB
testcase_20 AC 671 ms
112,256 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 655 ms
84,248 KB
testcase_24 AC 563 ms
102,576 KB
testcase_25 AC 650 ms
81,544 KB
testcase_26 AC 568 ms
106,368 KB
testcase_27 AC 649 ms
103,380 KB
testcase_28 AC 658 ms
91,136 KB
testcase_29 AC 690 ms
99,528 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 682 ms
89,980 KB
testcase_34 AC 648 ms
112,512 KB
testcase_35 AC 673 ms
106,112 KB
testcase_36 AC 659 ms
82,604 KB
testcase_37 AC 671 ms
88,216 KB
testcase_38 AC 663 ms
82,464 KB
testcase_39 WA -
testcase_40 AC 667 ms
103,852 KB
testcase_41 WA -
testcase_42 AC 677 ms
94,868 KB
testcase_43 AC 676 ms
93,312 KB
testcase_44 AC 471 ms
93,952 KB
testcase_45 AC 500 ms
93,056 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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()
        if len(x)==1: print(-1); continue
        for i in x:
            if i!=u: print(i+1); break
0