結果
問題 | No.1983 [Cherry 4th Tune C] 南の島のマーメイド |
ユーザー | 草苺奶昔 |
提出日時 | 2023-03-31 00:38:12 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 678 ms / 4,000 ms |
コード長 | 5,683 bytes |
コンパイル時間 | 12,145 ms |
コンパイル使用メモリ | 220,824 KB |
実行使用メモリ | 112,976 KB |
最終ジャッジ日時 | 2024-09-22 08:39:54 |
合計ジャッジ時間 | 28,936 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 9 ms
6,940 KB |
testcase_09 | AC | 13 ms
6,940 KB |
testcase_10 | AC | 25 ms
7,728 KB |
testcase_11 | AC | 25 ms
7,728 KB |
testcase_12 | AC | 12 ms
6,940 KB |
testcase_13 | AC | 361 ms
37,120 KB |
testcase_14 | AC | 417 ms
51,568 KB |
testcase_15 | AC | 454 ms
48,980 KB |
testcase_16 | AC | 194 ms
32,824 KB |
testcase_17 | AC | 447 ms
53,680 KB |
testcase_18 | AC | 394 ms
49,552 KB |
testcase_19 | AC | 494 ms
66,144 KB |
testcase_20 | AC | 403 ms
49,612 KB |
testcase_21 | AC | 432 ms
53,608 KB |
testcase_22 | AC | 524 ms
66,160 KB |
testcase_23 | AC | 674 ms
72,404 KB |
testcase_24 | AC | 666 ms
74,380 KB |
testcase_25 | AC | 676 ms
78,500 KB |
testcase_26 | AC | 670 ms
76,412 KB |
testcase_27 | AC | 669 ms
72,424 KB |
testcase_28 | AC | 666 ms
76,412 KB |
testcase_29 | AC | 665 ms
76,404 KB |
testcase_30 | AC | 678 ms
76,408 KB |
testcase_31 | AC | 648 ms
72,308 KB |
testcase_32 | AC | 649 ms
72,300 KB |
testcase_33 | AC | 1 ms
6,944 KB |
testcase_34 | AC | 242 ms
24,448 KB |
testcase_35 | AC | 490 ms
100,880 KB |
testcase_36 | AC | 446 ms
43,496 KB |
testcase_37 | AC | 2 ms
6,940 KB |
testcase_38 | AC | 128 ms
6,940 KB |
testcase_39 | AC | 567 ms
112,976 KB |
testcase_40 | AC | 500 ms
88,492 KB |
ソースコード
package main import ( "bufio" "fmt" "os" "strings" ) func main() { yuki1983() } func yuki1983() { // https://yukicoder.me/problems/no/1983 in := bufio.NewReader(os.Stdin) out := bufio.NewWriter(os.Stdout) defer out.Flush() var n, m, q int fmt.Fscan(in, &n, &m, &q) graph := make([][]Edge, n) edges := make([][2]int, m) for i := 0; i < m; i++ { var u, v int fmt.Fscan(in, &u, &v) u-- v-- graph[u] = append(graph[u], Edge{u, v, 1, i}) graph[v] = append(graph[v], Edge{v, u, 1, i}) edges[i] = [2]int{u, v} } tec := NewTwoEdgeConnectedComponents(graph) tec.Build() uf := NewUnionFindArray(n) for _, e := range edges { from_, to := e[0], e[1] if tec.Get(from_) != tec.Get(to) { uf.Union(from_, to) } } for i := 0; i < q; i++ { var u, v int fmt.Fscan(in, &u, &v) u-- v-- if uf.IsConnected(u, v) { fmt.Fprintln(out, "Yes") } else { fmt.Fprintln(out, "No") } } } type Edge = struct{ from, to, cost, index int } type TwoEdgeConnectedComponents struct { Tree [][]Edge // 缩点后各个顶点形成的树 CompId []int // 每个点所属的边双连通分量的编号 Group [][]int // 每个边双连通分量里的点 g [][]Edge lowLink *LowLink k int } func NewTwoEdgeConnectedComponents(g [][]Edge) *TwoEdgeConnectedComponents { return &TwoEdgeConnectedComponents{ g: g, lowLink: NewLowLink(g), } } func (tec *TwoEdgeConnectedComponents) Build() { tec.lowLink.Build() tec.CompId = make([]int, len(tec.g)) for i := 0; i < len(tec.g); i++ { tec.CompId[i] = -1 } for i := 0; i < len(tec.g); i++ { if tec.CompId[i] == -1 { tec.dfs(i, -1) } } tec.Group = make([][]int, tec.k) for i := 0; i < len(tec.g); i++ { tec.Group[tec.CompId[i]] = append(tec.Group[tec.CompId[i]], i) } tec.Tree = make([][]Edge, tec.k) for _, e := range tec.lowLink.Bridge { tec.Tree[tec.CompId[e.from]] = append(tec.Tree[tec.CompId[e.from]], Edge{tec.CompId[e.from], tec.CompId[e.to], e.cost, e.index}) tec.Tree[tec.CompId[e.to]] = append(tec.Tree[tec.CompId[e.to]], Edge{tec.CompId[e.to], tec.CompId[e.from], e.cost, e.index}) } } // 每个点所属的边双连通分量的编号. func (tec *TwoEdgeConnectedComponents) Get(k int) int { return tec.CompId[k] } func (tec *TwoEdgeConnectedComponents) dfs(idx, par int) { if par >= 0 && tec.lowLink.ord[par] >= tec.lowLink.low[idx] { tec.CompId[idx] = tec.CompId[par] } else { tec.CompId[idx] = tec.k tec.k++ } for _, e := range tec.g[idx] { if tec.CompId[e.to] == -1 { tec.dfs(e.to, idx) } } } type LowLink struct { Articulation []int // 関節点 Bridge []Edge // 橋 g [][]Edge ord, low []int used []bool } func NewLowLink(g [][]Edge) *LowLink { return &LowLink{g: g} } func (ll *LowLink) Build() { ll.used = make([]bool, len(ll.g)) ll.ord = make([]int, len(ll.g)) ll.low = make([]int, len(ll.g)) k := 0 for i := 0; i < len(ll.g); i++ { if !ll.used[i] { k = ll.dfs(i, k, -1) } } } func (ll *LowLink) dfs(idx, k, par int) int { ll.used[idx] = true ll.ord[idx] = k k++ ll.low[idx] = ll.ord[idx] isArticulation := false beet := false cnt := 0 for _, e := range ll.g[idx] { if e.to == par { tmp := beet beet = true if !tmp { continue } } if !ll.used[e.to] { cnt++ k = ll.dfs(e.to, k, idx) ll.low[idx] = min(ll.low[idx], ll.low[e.to]) if par >= 0 && ll.low[e.to] >= ll.ord[idx] { isArticulation = true } if ll.ord[idx] < ll.low[e.to] { ll.Bridge = append(ll.Bridge, e) } } else { ll.low[idx] = min(ll.low[idx], ll.ord[e.to]) } } if par == -1 && cnt > 1 { isArticulation = true } if isArticulation { ll.Articulation = append(ll.Articulation, idx) } return k } func min(a, b int) int { if a < b { return a } return b } func NewUnionFindArray(n int) *UnionFindArray { parent, rank := make([]int, n), make([]int, n) for i := 0; i < n; i++ { parent[i] = i rank[i] = 1 } return &UnionFindArray{ Part: n, rank: rank, n: n, parent: parent, } } type UnionFindArray struct { // 连通分量的个数 Part int rank []int n int parent []int } func (ufa *UnionFindArray) Union(key1, key2 int) bool { root1, root2 := ufa.Find(key1), ufa.Find(key2) if root1 == root2 { return false } if ufa.rank[root1] > ufa.rank[root2] { root1, root2 = root2, root1 } ufa.parent[root1] = root2 ufa.rank[root2] += ufa.rank[root1] ufa.Part-- return true } func (ufa *UnionFindArray) UnionWithCallback(key1, key2 int, cb func(big, small int)) bool { root1, root2 := ufa.Find(key1), ufa.Find(key2) if root1 == root2 { return false } if ufa.rank[root1] > ufa.rank[root2] { root1, root2 = root2, root1 } ufa.parent[root1] = root2 ufa.rank[root2] += ufa.rank[root1] ufa.Part-- cb(root2, root1) return true } func (ufa *UnionFindArray) Find(key int) int { for ufa.parent[key] != key { ufa.parent[key] = ufa.parent[ufa.parent[key]] key = ufa.parent[key] } return key } func (ufa *UnionFindArray) IsConnected(key1, key2 int) bool { return ufa.Find(key1) == ufa.Find(key2) } func (ufa *UnionFindArray) GetGroups() map[int][]int { groups := make(map[int][]int) for i := 0; i < ufa.n; i++ { root := ufa.Find(i) groups[root] = append(groups[root], i) } return groups } func (ufa *UnionFindArray) Size(key int) int { return ufa.rank[ufa.Find(key)] } func (ufa *UnionFindArray) String() string { sb := []string{"UnionFindArray:"} for root, member := range ufa.GetGroups() { cur := fmt.Sprintf("%d: %v", root, member) sb = append(sb, cur) } sb = append(sb, fmt.Sprintf("Part: %d", ufa.Part)) return strings.Join(sb, "\n") }