結果

問題 No.1266 7 Colors
ユーザー 草苺奶昔草苺奶昔
提出日時 2024-09-13 03:28:14
言語 Go
(1.22.1)
結果
AC  
実行時間 401 ms / 3,000 ms
コード長 2,421 bytes
コンパイル時間 14,409 ms
コンパイル使用メモリ 223,672 KB
実行使用メモリ 16,376 KB
最終ジャッジ日時 2024-09-13 03:28:37
合計ジャッジ時間 21,621 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,812 KB
testcase_03 AC 256 ms
7,984 KB
testcase_04 AC 359 ms
12,180 KB
testcase_05 AC 258 ms
7,968 KB
testcase_06 AC 352 ms
14,248 KB
testcase_07 AC 374 ms
14,272 KB
testcase_08 AC 353 ms
14,260 KB
testcase_09 AC 338 ms
12,040 KB
testcase_10 AC 308 ms
12,112 KB
testcase_11 AC 271 ms
10,092 KB
testcase_12 AC 276 ms
9,988 KB
testcase_13 AC 291 ms
9,972 KB
testcase_14 AC 258 ms
7,968 KB
testcase_15 AC 401 ms
16,324 KB
testcase_16 AC 282 ms
9,992 KB
testcase_17 AC 373 ms
14,264 KB
testcase_18 AC 269 ms
16,376 KB
testcase_19 AC 285 ms
16,312 KB
testcase_20 AC 284 ms
16,312 KB
testcase_21 AC 176 ms
7,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
)

// No.1266 7 Colors (七龙珠)
// https://yukicoder.me/problems/no/1266
func main() {
	in := bufio.NewReader(os.Stdin)
	out := bufio.NewWriter(os.Stdout)
	defer out.Flush()

	const K int32 = 7

	var n, m, q int32
	fmt.Fscan(in, &n, &m, &q)
	states := make([][]bool, n)
	for i := range states {
		var s string
		fmt.Fscan(in, &s)
		states[i] = make([]bool, K)
		for j, c := range s {
			if c == '1' {
				states[i][j] = true
			}
		}
	}
	graph := make([][]int32, n)
	for i := int32(0); i < m; i++ {
		var u, v int32
		fmt.Fscan(in, &u, &v)
		u--
		v--
		graph[u] = append(graph[u], v)
		graph[v] = append(graph[v], u)
	}

	idx := func(v, c int32) int32 { return K*v + c }

	uf := NewUnionFindArraySimple32(K * n)

	add := func(v, k int32) {
		states[v][k] = true
		for _, to := range graph[v] {
			if states[to][k] {
				uf.Union(idx(v, k), idx(to, k), nil)
			}
		}
		a := k - 1
		b := k + 1
		if a < 0 {
			a = K - 1
		}
		if b == K {
			b = 0
		}
		if states[v][a] {
			uf.Union(idx(v, a), idx(v, k), nil)
		}
		if states[v][b] {
			uf.Union(idx(v, b), idx(v, k), nil)
		}
	}

	for v := int32(0); v < n; v++ {
		for k := int32(0); k < K; k++ {
			if states[v][k] {
				add(v, k)
			}
		}
	}

	for i := int32(0); i < q; i++ {
		var t, x, y int32
		fmt.Fscan(in, &t, &x, &y)
		if t == 1 {
			x, y = x-1, y-1
			add(x, y)
		} else if t == 2 {
			x--
			res := uf.Size(idx(x, 0))
			fmt.Fprintln(out, res)
		}
	}

}

type UnionFindArraySimple32 struct {
	Part int32
	n    int32
	data []int32
}

func NewUnionFindArraySimple32(n int32) *UnionFindArraySimple32 {
	data := make([]int32, n)
	for i := int32(0); i < n; i++ {
		data[i] = -1
	}
	return &UnionFindArraySimple32{Part: n, n: n, data: data}
}

func (u *UnionFindArraySimple32) Union(key1, key2 int32, beforeMerge func(big, small int32)) bool {
	root1, root2 := u.Find(key1), u.Find(key2)
	if root1 == root2 {
		return false
	}
	if u.data[root1] > u.data[root2] {
		root1, root2 = root2, root1
	}
	if beforeMerge != nil {
		beforeMerge(root1, root2)
	}
	u.data[root1] += u.data[root2]
	u.data[root2] = root1
	u.Part--
	return true
}

func (u *UnionFindArraySimple32) Find(key int32) int32 {
	root := key
	for u.data[root] >= 0 {
		root = u.data[root]
	}
	for key != root {
		key, u.data[key] = u.data[key], root
	}
	return root
}

func (u *UnionFindArraySimple32) Size(key int32) int32 {
	return -u.data[u.Find(key)]
}
0