結果
問題 | No.2290 UnUnion Find |
ユーザー | navel_tos |
提出日時 | 2023-06-01 12:09:46 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,148 bytes |
コンパイル時間 | 361 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 289,988 KB |
最終ジャッジ日時 | 2024-06-08 21:34:25 |
合計ジャッジ時間 | 17,132 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
58,368 KB |
testcase_01 | AC | 39 ms
52,096 KB |
testcase_02 | AC | 581 ms
76,960 KB |
testcase_03 | AC | 475 ms
93,640 KB |
testcase_04 | AC | 507 ms
93,532 KB |
testcase_05 | AC | 538 ms
93,812 KB |
testcase_06 | AC | 520 ms
93,536 KB |
testcase_07 | AC | 510 ms
93,580 KB |
testcase_08 | AC | 506 ms
93,580 KB |
testcase_09 | AC | 514 ms
93,584 KB |
testcase_10 | AC | 513 ms
93,660 KB |
testcase_11 | AC | 510 ms
93,600 KB |
testcase_12 | AC | 505 ms
93,952 KB |
testcase_13 | AC | 506 ms
93,620 KB |
testcase_14 | AC | 535 ms
93,976 KB |
testcase_15 | AC | 530 ms
93,520 KB |
testcase_16 | AC | 512 ms
93,824 KB |
testcase_17 | AC | 543 ms
93,824 KB |
testcase_18 | AC | 509 ms
94,116 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 | -- | - |
ソースコード
#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: p=set([UF.find(u)])^UF.check(); print(next(iter(p))+1) if p else print(-1)