結果
問題 | No.2290 UnUnion Find |
ユーザー | ニックネーム |
提出日時 | 2023-05-05 22:05:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 722 bytes |
コンパイル時間 | 433 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 25,440 KB |
最終ジャッジ日時 | 2024-05-02 16:22:46 |
合計ジャッジ時間 | 7,963 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
16,128 KB |
testcase_01 | AC | 25 ms
10,624 KB |
testcase_02 | AC | 1,224 ms
10,624 KB |
testcase_03 | AC | 1,033 ms
19,940 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
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 | -- | - |
ソースコード
class UF: def __init__(self,n): self.p = [-1]*n; self.i = set(range(n)) def f(self,x): if self.p[x]<0: return x else: self.p[x] = self.f(self.p[x]); return self.p[x] def u(self,x,y): x = self.f(x); y = self.f(y) if x==y: return if -self.p[x]<-self.p[y]: x,y = y,x self.p[x] += self.p[y]; self.i.remove(y); self.p[y] = x def s(self,x,y): return self.f(x) == self.f(y) n,q = map(int,input().split()) uf = UF(n) for _ in range(q): p = list(map(int,input().split())) if p[0]==1: uf.u(p[1]-1,p[2]-1) if p[0]==2: if len(uf.i)==1: print(-1); continue i = uf.f(p[1]-1) for j in uf.i: if i!=j: print(j+1); break