結果
問題 | No.2290 UnUnion Find |
ユーザー | ynm3n |
提出日時 | 2023-05-05 23:58:09 |
言語 | Go (1.22.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,821 bytes |
コンパイル時間 | 17,493 ms |
コンパイル使用メモリ | 241,060 KB |
実行使用メモリ | 20,452 KB |
最終ジャッジ日時 | 2024-11-23 13:08:07 |
合計ジャッジ時間 | 69,122 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | RE | - |
testcase_18 | TLE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | AC | 290 ms
10,004 KB |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | TLE | - |
testcase_45 | RE | - |
testcase_46 | WA | - |
ソースコード
package main import ( "bufio" "fmt" "os" ) func main() { rd := bufio.NewReader(os.Stdin) wr := bufio.NewWriter(os.Stdout) defer wr.Flush() var n, q int fmt.Fscan(rd, &n, &q) uf := newUnionFindTree(n) var typ, u, v int for i := 0; i < q; i++ { fmt.Fscan(rd, &typ) switch typ { case 1: fmt.Fscan(rd, &u, &v) u-- v-- uf.unite(u, v) case 2: fmt.Fscan(rd, &v) r := uf.findRoot(v) ans := -1 for v2 := range uf.roots { if r != v2 { ans = v2 + 1 break } } fmt.Fprintln(wr, ans) } } } // UnionFind Tree type unionFindTree struct { // 備忘録 // 根となる頂点の要素には、特別に以下のような数値が格納されています。 // 「その根が含まれている木」に含まれる頂点の数にマイナスをかけたもの parent []int // 連結成分の個数です cnt int roots map[int]struct{} } func newUnionFindTree(n int) *unionFindTree { uf := new(unionFindTree) uf.parent = make([]int, n) for i := range uf.parent { uf.parent[i] = -1 } uf.cnt = n uf.roots = make(map[int]struct{}) for i := 0; i < n; i++ { uf.roots[i] = struct{}{} } return uf } func (uf *unionFindTree) findRoot(a int) int { if uf.parent[a] < 0 { return a } r := uf.findRoot(uf.parent[a]) if _, exist := uf.roots[a]; exist && a != r { delete(uf.roots, a) } uf.parent[a] = r return r } func (uf *unionFindTree) unite(a, b int) bool { x, y := uf.findRoot(a), uf.findRoot(b) if x == y { return false } if uf.size(x) < uf.size(y) { x, y = y, x } delete(uf.roots, y) uf.parent[x] += uf.parent[y] uf.parent[y] = x uf.cnt-- return true } func (uf *unionFindTree) sameRoot(a, b int) bool { return uf.findRoot(a) == uf.findRoot(b) } func (uf *unionFindTree) size(a int) int { return -uf.parent[uf.findRoot(a)] }