結果

問題 No.2290 UnUnion Find
ユーザー ynm3nynm3n
提出日時 2023-05-06 01:05:01
言語 Go
(1.23.4)
結果
TLE  
実行時間 -
コード長 1,865 bytes
コンパイル時間 18,216 ms
コンパイル使用メモリ 231,388 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-11-23 13:44:34
合計ジャッジ時間 80,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 1 ms
11,776 KB
testcase_02 AC 158 ms
10,496 KB
testcase_03 AC 242 ms
14,208 KB
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 TLE -
testcase_18 TLE -
testcase_19 AC 267 ms
14,464 KB
testcase_20 AC 277 ms
10,368 KB
testcase_21 AC 283 ms
5,248 KB
testcase_22 AC 250 ms
5,760 KB
testcase_23 AC 247 ms
5,760 KB
testcase_24 AC 273 ms
9,472 KB
testcase_25 AC 585 ms
5,760 KB
testcase_26 AC 269 ms
9,856 KB
testcase_27 AC 272 ms
9,472 KB
testcase_28 AC 245 ms
7,680 KB
testcase_29 AC 270 ms
9,216 KB
testcase_30 AC 561 ms
5,504 KB
testcase_31 AC 259 ms
9,216 KB
testcase_32 AC 484 ms
5,760 KB
testcase_33 AC 244 ms
7,680 KB
testcase_34 AC 274 ms
10,368 KB
testcase_35 AC 265 ms
9,984 KB
testcase_36 AC 301 ms
5,632 KB
testcase_37 AC 239 ms
7,552 KB
testcase_38 AC 310 ms
5,632 KB
testcase_39 AC 258 ms
7,424 KB
testcase_40 AC 269 ms
9,472 KB
testcase_41 AC 852 ms
5,888 KB
testcase_42 AC 265 ms
9,216 KB
testcase_43 AC 249 ms
8,064 KB
testcase_44 TLE -
testcase_45 AC 253 ms
8,192 KB
testcase_46 AC 255 ms
14,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
			v--
			r := uf.findRoot(v)
			ans := -1
			if len(uf.roots) > 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)]
}
0