mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
815 B
60 lines
815 B
package main |
|
|
|
import ( |
|
"github.com/01-edu/z01" |
|
|
|
correct "./correct" |
|
) |
|
|
|
func nd(a, b int) int { |
|
if a > b { |
|
return -1 |
|
} |
|
if a == b { |
|
return 0 |
|
} |
|
if nd(a*2, b) != -1 { |
|
return 1 + nd(a*2, b) |
|
} |
|
if nd(a*3, b) != -1 { |
|
return 1 + nd(a*3, b) |
|
} |
|
return -1 |
|
} |
|
|
|
func main() { |
|
type node struct { |
|
init int |
|
fin int |
|
} |
|
table := []node{ |
|
{50, 43}, |
|
{13, 13}, |
|
{10, 9}, |
|
{5, 9}, |
|
} |
|
|
|
for i := 0; i < 20; i++ { |
|
table = append(table, node{ |
|
init: z01.RandIntBetween(1, 1000), |
|
fin: z01.RandIntBetween(1, 1000), |
|
}) |
|
} |
|
|
|
for i := 1; i < 100; i++ { |
|
value := node{ |
|
init: 1, |
|
fin: 1, |
|
} |
|
if nd(1, i) > 0 { |
|
value = node{ |
|
init: 1, |
|
fin: i, |
|
} |
|
} |
|
table = append(table, value) |
|
} |
|
for _, arg := range table { |
|
z01.Challenge("Game23", Game23, correct.Game23, arg.init, arg.fin) |
|
} |
|
}
|
|
|