-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.go
72 lines (59 loc) · 1.25 KB
/
common.go
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
package main
import (
"bufio"
"fmt"
"os"
"strings"
"sync"
)
type bot struct {
ID int
C chan int
Store [2]int
Low int
LowType string
High int
HighType string
}
var (
bots = make(map[int]*bot)
output = make(map[int]int)
)
func CreateBot(wg *sync.WaitGroup, id int, low int, lowType string, high int, highType string) {
if _, ok := bots[id]; ok {
return
}
bots[id] = &bot{
ID: id,
C: make(chan int),
Store: [2]int{},
Low: low,
LowType: lowType,
High: high,
HighType: highType,
}
bots[id].Start(wg)
}
func parseAndRun() {
type input struct{ chip, bot int }
wg := &sync.WaitGroup{}
inputs := make([]input, 0)
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
line := scanner.Text()
if strings.HasPrefix(line, "value") {
var chip, bot int
_, _ = fmt.Sscanf(line, "value %d goes to bot %d", &chip, &bot)
inputs = append(inputs, input{chip, bot})
} else {
var bot, low, high int
var lowType, highType string
_, _ = fmt.Sscanf(line, "bot %d gives low to %s %d and high to %s %d", &bot, &lowType, &low, &highType, &high)
CreateBot(wg, bot, low, lowType, high, highType)
}
}
for _, i := range inputs {
bots[i.bot].C <- i.chip
}
wg.Wait()
}