-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain1.go
86 lines (71 loc) · 1.04 KB
/
main1.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package main
import (
"fmt"
"io/ioutil"
"log"
"os"
"strings"
)
type Point struct{ X, Y int }
type Santa struct {
space map[Point]bool
ptr Point
}
func (s *Santa) North() {
s.ptr.Y++
s.Visit()
}
func (s *Santa) South() {
s.ptr.Y--
s.Visit()
}
func (s *Santa) West() {
s.ptr.X--
s.Visit()
}
func (s *Santa) East() {
s.ptr.X++
s.Visit()
}
func (s *Santa) Visit() {
s.space[Point{s.ptr.X, s.ptr.Y}] = true
}
func (s *Santa) Visited() int {
count := 0
for _, v := range s.space {
if v {
count++
}
}
return count
}
func NewSanta() *Santa {
return &Santa{
space: make(map[Point]bool),
ptr: Point{0, 0},
}
}
func main() {
buf, err := ioutil.ReadAll(os.Stdin)
if err != nil {
log.Fatal(err)
}
input := strings.TrimSpace(string(buf))
santa := NewSanta()
santa.Visit()
for _, c := range input {
switch c {
case '^':
santa.North()
case '<':
santa.West()
case '>':
santa.East()
case 'v':
santa.South()
default:
log.Printf("unknown character %+v", c)
}
}
fmt.Println(santa.Visited())
}