1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
package main
import (
"bufio"
"fmt"
"os"
"sort"
"strings"
)
func main() {
fmt.Println(part1(readData("example.txt")), 7)
fmt.Println(part1(readData("data.txt")), 1043)
fmt.Println("co,de,ka,ta")
fmt.Println(part2(readData("example.txt")))
fmt.Println("ai,bk,dc,dx,fo,gx,hk,kd,os,uz,xn,yk,zs")
fmt.Println(part2(readData("data.txt")))
}
const SIZE = 26 * 26
func buildAdjacency(pairs [][2]int) [][]bool {
matrix := make([][]bool, SIZE)
for a := range matrix {
matrix[a] = make([]bool, SIZE)
}
for _, p := range pairs {
matrix[p[0]][p[1]] = true
matrix[p[1]][p[0]] = true
}
return matrix
}
func part1(pairs [][2]int) (count int) {
matrix := buildAdjacency(pairs)
triples := make(map[[3]int]bool)
for a := range SIZE {
connectedToA := make([]int, 0)
for b := a + 1; b < SIZE; b++ {
if matrix[a][b] {
connectedToA = append(connectedToA, b)
}
}
for ib, b := range connectedToA {
for ic := ib + 1; ic < len(connectedToA); ic++ {
c := connectedToA[ic]
if matrix[b][c] {
sortTriple(&a, &b, &c)
triples[[3]int{a, b, c}] = true
}
}
}
}
for t := range triples {
if containsT(t[0]) || containsT(t[1]) || containsT(t[2]) {
count++
}
}
return count
}
func part2(pairs [][2]int) string {
matrix := buildAdjacency(pairs)
sets := [][]int{}
for a := range SIZE {
isInAnySet := false
for i, set := range sets {
connectedToAll := true
for _, other := range set {
if !matrix[a][other] {
connectedToAll = false
break
}
}
if connectedToAll {
sets[i] = append(set, a)
isInAnySet = true
}
}
if !isInAnySet {
sets = append(sets, []int{a})
}
}
maxSet := []int{}
for _, set := range sets {
if len(set) > len(maxSet) {
maxSet = set
}
}
ids := make([]string, 0, len(maxSet))
for _, id := range maxSet {
ids = append(ids, numToId(id))
}
sort.Sort(sort.StringSlice(ids))
return strings.Join(ids, ",")
}
func containsT(x int) bool {
const MIN = int('t'-'a') * 26
const MAX = MIN + 25
return x >= MIN && x <= MAX
}
func sortTriple(a, b, c *int) {
maybeSwap := func(a, b *int) {
if *a > *b {
*a, *b = *b, *a
}
}
maybeSwap(a, b)
maybeSwap(b, c)
maybeSwap(a, b)
maybeSwap(b, c)
}
func idToNum(s string) int {
return int(s[0]-'a')*26 + int(s[1]-'a')
}
func numToId(id int) string {
return string([]byte{byte(id/26 + 'a'), byte(id%26 + 'a')})
}
func readData(fileName string) (pairs [][2]int) {
fp, _ := os.Open(fileName)
scanner := bufio.NewScanner(fp)
for scanner.Scan() {
line := scanner.Text()
pair := [2]int{idToNum(line[0:2]), idToNum(line[3:5])}
pairs = append(pairs, pair)
}
return
}
|