-
Notifications
You must be signed in to change notification settings - Fork 0
/
gogo04.go
284 lines (260 loc) · 5.48 KB
/
gogo04.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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
// 電通大で行われたコンピュータ囲碁講習会をGolangで追う
package main
import (
// "bufio"
"fmt"
// "log"
// "math"
"math/rand"
// "os"
// "sort"
// "strconv"
// "strings"
// "sync"
"time"
// "unicode"
// "unsafe"
)
const (
BoardSize = 9
Width = (BoardSize + 2)
BoardMax = (Width * Width)
)
var board = [BoardMax]int{
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,
3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,
3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,
3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,
3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,
3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,
3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,
3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,
3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
}
var dir4 = [4]int{1, Width, -1, -Width}
var ko_z int
func get_z(x int, y int) int {
return y*Width + x
}
func get81(z int) int {
y := z / Width
x := z - y*Width
if z == 0 {
return 0
}
return x*10 + y
}
func flip_color(col int) int {
return 3 - col
}
var check_board = [BoardMax]int{}
func count_liberty_sub(tz int, color int, p_liberty *int, p_stone *int) {
check_board[tz] = 1
*p_stone++
for i := 0; i < 4; i++ {
z := tz + dir4[i]
if check_board[z] != 0 {
continue
}
if board[z] == 0 {
check_board[z] = 1
*p_liberty++
}
if board[z] == color {
count_liberty_sub(z, color, p_liberty, p_stone)
}
}
}
func count_liberty(tz int, p_liberty *int, p_stone *int) {
*p_liberty = 0
*p_stone = 0
for i := 0; i < BoardMax; i++ {
check_board[i] = 0
}
count_liberty_sub(tz, board[tz], p_liberty, p_stone)
}
func take_stone(tz int, color int) {
board[tz] = 0
for i := 0; i < 4; i++ {
z := tz + dir4[i]
if board[z] == color {
take_stone(z, color)
}
}
}
const (
FILL_EYE_ERR = 1
)
func put_stone(tz int, color int, fill_eye_err int) int {
var around = [4][3]int{}
var liberty, stone int
un_col := flip_color(color)
space := 0
wall := 0
mycol_safe := 0
capture_sum := 0
ko_maybe := 0
if tz == 0 {
ko_z = 0
return 0
}
for i := 0; i < 4; i++ {
around[i][0] = 0
around[i][1] = 0
around[i][2] = 0
z := tz + dir4[i]
c := board[z]
if c == 0 {
space++
}
if c == 3 {
wall++
}
if c == 0 || c == 3 {
continue
}
count_liberty(z, &liberty, &stone)
around[i][0] = liberty
around[i][1] = stone
around[i][2] = c
if c == un_col && liberty == 1 {
capture_sum += stone
ko_maybe = z
}
if c == color && liberty >= 2 {
mycol_safe++
}
}
if capture_sum == 0 && space == 0 && mycol_safe == 0 {
return 1
}
if tz == ko_z {
return 2
}
if wall+mycol_safe == 4 && fill_eye_err == FILL_EYE_ERR {
return 3
}
if board[tz] != 0 {
return 4
}
for i := 0; i < 4; i++ {
lib := around[i][0]
c := around[i][2]
if c == un_col && lib == 1 && board[tz+dir4[i]] != 0 {
take_stone(tz+dir4[i], un_col)
}
}
board[tz] = color
count_liberty(tz, &liberty, &stone)
if capture_sum == 1 && stone == 1 && liberty == 1 {
ko_z = ko_maybe
} else {
ko_z = 0
}
return 0
}
// var usi_koma_kanji = [20]string{"零", "一", "二", "三", "四", "五", "六", "七", "八", "九",
// "十", "⑪", "⑫", "⑬", "⑭", "⑮", "⑯", "⑰", "⑱","⑲"}
var usi_koma_kanji = [20]string{"零", "一", "二", "三", "四", "五", "六", "七", "八", "九",
"❿", "⓫", "⓬", "⓭", "⓮", "⓯", "⓰", "⓱", "⓲", "⓳"}
func PrintBoard() {
var str = [4]string{"・", "●", "○", "#"}
fmt.Printf("\n ")
for x := 0; x < BoardSize; x++ {
fmt.Printf("%2d", x+1)
}
fmt.Printf("\n +")
for x := 0; x < BoardSize; x++ {
fmt.Printf("--")
}
fmt.Printf("+\n")
for y := 0; y < BoardSize; y++ {
fmt.Printf("%s|", usi_koma_kanji[y+1])
for x := 0; x < BoardSize; x++ {
fmt.Printf("%s", str[board[x+1+Width*(y+1)]])
}
fmt.Printf("|\n")
}
fmt.Printf(" +")
for x := 0; x < BoardSize; x++ {
fmt.Printf("--")
}
fmt.Printf("+\n")
}
// func get_empty_z() int {
// var x, y, z int
// for {
// x = rand.Intn(9) + 1
// y = rand.Intn(9) + 1
// z = get_z(x, y)
// if board[z] == 0 {
// break
// }
// }
// return z
// }
// func play_one_move(color int) int {
// var z int
// for i := 0; i < 100; i++ {
// z := get_empty_z()
// err := put_stone(z, color)
// if err == 0 {
// return z
// }
// }
// z = 0
// put_stone(0, color)
// return z
// }
func playout(turn_color int) int {
color := turn_color
previous_z := 0
loop_max := BoardSize*BoardSize + 200
for loop := 0; loop < loop_max; loop++ {
var empty = [BoardMax]int{}
var empty_num, r, z int
for y := 0; y <= BoardSize; y++ {
for x := 0; x < BoardSize; x++ {
z = get_z(x+1, y+1)
if board[z] != 0 {
continue
}
empty[empty_num] = z
empty_num++
}
}
r = 0
for {
if empty_num == 0 {
z = 0
} else {
r = rand.Intn(empty_num)
z = empty[r]
}
err := put_stone(z, color, FILL_EYE_ERR)
if err == 0 {
break
}
empty[r] = empty[empty_num-1]
empty_num--
}
if z == 0 && previous_z == 0 {
break
}
previous_z = z
PrintBoard()
fmt.Printf("loop=%d,z=%d,c=%d,empty_num=%d,ko_z=%d\n",
loop, get81(z), color, empty_num, get81(ko_z))
color = flip_color(color)
}
return 0
}
var moves int
var record [1000]int
func main() {
color := 1
rand.Seed(time.Now().UnixNano())
playout(color)
}