2021 - Day 24
This commit is contained in:
43
2021/24/old/helper.go
Normal file
43
2021/24/old/helper.go
Normal file
@@ -0,0 +1,43 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
func parseRegister(r string) int {
|
||||
switch r {
|
||||
case "w":
|
||||
return 0
|
||||
case "x":
|
||||
return 1
|
||||
case "y":
|
||||
return 2
|
||||
case "z":
|
||||
return 3
|
||||
default:
|
||||
panic("Unknown register")
|
||||
}
|
||||
}
|
||||
|
||||
func registerToString(r int) string {
|
||||
switch r {
|
||||
case 0:
|
||||
return "w"
|
||||
case 1:
|
||||
return "x"
|
||||
case 2:
|
||||
return "y"
|
||||
case 3:
|
||||
return "z"
|
||||
default:
|
||||
return fmt.Sprintf("%d", r)
|
||||
}
|
||||
}
|
||||
|
||||
func isNumber(s string) bool {
|
||||
_, err := strconv.Atoi(s)
|
||||
|
||||
return err == nil
|
||||
}
|
||||
|
||||
322
2021/24/old/main.go
Normal file
322
2021/24/old/main.go
Normal file
@@ -0,0 +1,322 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
aoc "AoC/2021/common"
|
||||
"bufio"
|
||||
"fmt"
|
||||
"strconv"
|
||||
"strings"
|
||||
)
|
||||
|
||||
type Operator byte
|
||||
const (
|
||||
INP Operator = iota
|
||||
ADD
|
||||
ADDR
|
||||
MUL
|
||||
MULR
|
||||
DIV
|
||||
DIVR
|
||||
MOD
|
||||
MODR
|
||||
EQL
|
||||
EQLR
|
||||
)
|
||||
|
||||
func (op Operator) String() string {
|
||||
switch op {
|
||||
case INP:
|
||||
return "INP"
|
||||
case ADD, ADDR:
|
||||
return "ADD"
|
||||
case MUL, MULR:
|
||||
return "MUL"
|
||||
case DIV, DIVR:
|
||||
return "DIV"
|
||||
case MOD, MODR:
|
||||
return "MOD"
|
||||
case EQL, EQLR:
|
||||
return "EQL"
|
||||
default:
|
||||
return fmt.Sprintf("%d", int(op))
|
||||
}
|
||||
}
|
||||
|
||||
type Instruction struct {
|
||||
op Operator
|
||||
a int
|
||||
b int
|
||||
}
|
||||
|
||||
func (i Instruction) String() string {
|
||||
if i.op == INP {
|
||||
return fmt.Sprintf("%v\t[%s]", i.op, registerToString(i.a))
|
||||
}
|
||||
|
||||
if i.op % 2 == 0 {
|
||||
return fmt.Sprintf("%v\t[%s],\t[%s]", i.op, registerToString(i.a), registerToString(i.b))
|
||||
}
|
||||
|
||||
return fmt.Sprintf("%v\t[%s],\t %d", i.op, registerToString(i.a), i.b)
|
||||
}
|
||||
|
||||
type Memory [4]int
|
||||
|
||||
func (m Memory) String() string {
|
||||
return fmt.Sprintf("w: %d, x: %d, y: %d, z: %d", m[0], m[1], m[2], m[3])
|
||||
}
|
||||
|
||||
type Stream struct {
|
||||
stream []int
|
||||
counter int
|
||||
}
|
||||
|
||||
func (s *Stream) Get() int {
|
||||
if s.counter == len(s.stream) {
|
||||
panic("End of stream reached")
|
||||
}
|
||||
|
||||
val := s.stream[s.counter]
|
||||
s.counter++
|
||||
return val
|
||||
}
|
||||
|
||||
func NewStream(input string) Stream {
|
||||
var s Stream
|
||||
s.stream = make([]int, len(input))
|
||||
|
||||
for i, b := range input {
|
||||
n, err := strconv.Atoi(string(b))
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
if n == 0 {
|
||||
panic("0 is not a valid input")
|
||||
}
|
||||
|
||||
s.stream[i] = n
|
||||
}
|
||||
|
||||
return s
|
||||
}
|
||||
|
||||
type Program []Instruction
|
||||
|
||||
func (p Program) ExecuteMem(input string, mem Memory) Memory {
|
||||
stream := NewStream(input)
|
||||
|
||||
for _, i := range p {
|
||||
switch i.op {
|
||||
case INP:
|
||||
mem[i.a] = stream.Get()
|
||||
case ADD:
|
||||
mem[i.a] += i.b
|
||||
case ADDR:
|
||||
mem[i.a] += mem[i.b]
|
||||
case MUL:
|
||||
mem[i.a] *= i.b
|
||||
case MULR:
|
||||
mem[i.a] *= mem[i.b]
|
||||
case DIV:
|
||||
mem[i.a] /= i.b
|
||||
case DIVR:
|
||||
mem[i.a] /= mem[i.b]
|
||||
case MOD:
|
||||
mem[i.a] %= i.b
|
||||
case MODR:
|
||||
mem[i.a] %= mem[i.b]
|
||||
case EQL:
|
||||
val := 0
|
||||
if mem[i.a] == i.b {
|
||||
val = 1
|
||||
}
|
||||
mem[i.a] = val
|
||||
case EQLR:
|
||||
val := 0
|
||||
if mem[i.a] == mem[i.b] {
|
||||
val = 1
|
||||
}
|
||||
mem[i.a] = val
|
||||
default:
|
||||
panic("Unknown operator")
|
||||
}
|
||||
|
||||
// fmt.Println(mem)
|
||||
}
|
||||
|
||||
return mem
|
||||
}
|
||||
|
||||
func (p Program) Execute(input string) Memory {
|
||||
var mem Memory
|
||||
|
||||
return p.ExecuteMem(input, mem)
|
||||
}
|
||||
|
||||
func Compile(input *bufio.Scanner) Program {
|
||||
var program Program
|
||||
|
||||
for input.Scan() {
|
||||
line := input.Text()
|
||||
inst := strings.Split(line, " ")
|
||||
|
||||
var instruction Instruction
|
||||
|
||||
// Parse the operator
|
||||
switch inst[0] {
|
||||
case "inp":
|
||||
instruction.op = INP
|
||||
case "add":
|
||||
instruction.op = ADD
|
||||
case "mul":
|
||||
instruction.op = MUL
|
||||
case "div":
|
||||
instruction.op = DIV
|
||||
case "mod":
|
||||
instruction.op = MOD
|
||||
case "eql":
|
||||
instruction.op = EQL
|
||||
default:
|
||||
panic("Unknown instruction")
|
||||
}
|
||||
|
||||
// Parse the first parameter, this is always a register
|
||||
instruction.a = parseRegister(inst[1])
|
||||
|
||||
// All instructions, except INP, require a second parameter
|
||||
if instruction.op != INP {
|
||||
b := inst[2]
|
||||
if val, err := strconv.Atoi(b); err == nil {
|
||||
// If the parameter is a number we use that as the second parameter
|
||||
instruction.b = val
|
||||
} else {
|
||||
// Otherwise the parameter is a register, so we parse it and set it to the register
|
||||
instruction.b = parseRegister(b)
|
||||
// We also increment the operator by one to indicate that the second parameter is a register
|
||||
instruction.op++
|
||||
}
|
||||
}
|
||||
|
||||
program = append(program, instruction)
|
||||
}
|
||||
|
||||
return program
|
||||
}
|
||||
|
||||
func (p Program) Optimize() Program {
|
||||
fmt.Printf("QUASI\n")
|
||||
p, _ = p.quasi(false)
|
||||
|
||||
fmt.Printf("PRECOMP\n")
|
||||
p = p.precomp()
|
||||
|
||||
return p
|
||||
}
|
||||
|
||||
// func (p Program) Solver() {
|
||||
// // There should be a total of 14 blocks
|
||||
// mem := [4]int{3, 0, 0, 0}
|
||||
// for i := range p {
|
||||
// if p[i].op == INP {
|
||||
// end := len(p)
|
||||
// for j := i+1; j < len(p); j++ {
|
||||
// if p[j].op == INP {
|
||||
// end = j
|
||||
// break
|
||||
// }
|
||||
// }
|
||||
|
||||
// tp := p[i+1:end]
|
||||
// tp.Execute("", [4]int{w, 0, 0, 0}))
|
||||
|
||||
// break
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
func step(w int, z int, a int, b int, pop bool) int {
|
||||
temp := z
|
||||
|
||||
if pop {
|
||||
// Pop value from stack
|
||||
z /= 26
|
||||
}
|
||||
|
||||
if (temp % 26) + a != w {
|
||||
// Push new value to stack
|
||||
z *= 26
|
||||
z += w+b
|
||||
}
|
||||
|
||||
return z
|
||||
}
|
||||
|
||||
func reverse(w int, z int, a int, b int, pop bool) []int {
|
||||
var valid []int
|
||||
for zc := 0; zc < 1000; zc++ {
|
||||
res := step(w, zc, a, b, pop)
|
||||
if res == z {
|
||||
valid = append(valid, zc)
|
||||
}
|
||||
}
|
||||
|
||||
return valid
|
||||
}
|
||||
|
||||
|
||||
func main() {
|
||||
challenge := aoc.New(2021, 24)
|
||||
|
||||
challenge.Solution(1, func (input *bufio.Scanner) int {
|
||||
program := Compile(input)
|
||||
|
||||
mem := program.Execute("13579246899999")
|
||||
fmt.Println(mem)
|
||||
|
||||
w := []int{1, 3, 5, 7, 9, 2, 4, 6, 8, 9, 9, 9, 9, 9}
|
||||
z := step(w[0], 0, 14, 1, false)
|
||||
z = step(w[1], z, 15, 7, false)
|
||||
z = step(w[2], z, 15, 13, false)
|
||||
z = step(w[3], z, -6, 10, true)
|
||||
z = step(w[4], z, 14, 0, false)
|
||||
z = step(w[5], z, -4, 13, true)
|
||||
z = step(w[6], z, 15, 11, false)
|
||||
z = step(w[7], z, 15, 6, false)
|
||||
z = step(w[8], z, 11, 1, false)
|
||||
z = step(w[9], z, 0, 7, true)
|
||||
z = step(w[10], z, 0, 11, true)
|
||||
z = step(w[11], z, -3, 14, true)
|
||||
z = step(w[12], z, -9, 4, true)
|
||||
z = step(w[13], z, -9, 10, true)
|
||||
fmt.Println(z)
|
||||
|
||||
// solution := make(map[int]int)
|
||||
for w := 1; w <= 9; w++ {
|
||||
valid := reverse(w, 0, -9, 10, true)
|
||||
fmt.Println(w, valid)
|
||||
for _, v := range valid {
|
||||
check := step(w, v, -9, 10, true)
|
||||
|
||||
if check != 0 {
|
||||
panic("CHECK FAILED")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
for w := 1; w <= 9; w++ {
|
||||
fmt.Println(w, reverse(w, w+9, -9, 4, true))
|
||||
}
|
||||
|
||||
// for _, i := range program {
|
||||
// fmt.Println(i)
|
||||
// }
|
||||
|
||||
return -1
|
||||
})
|
||||
|
||||
challenge.Solution(2, func (input *bufio.Scanner) int {
|
||||
return 0
|
||||
})
|
||||
}
|
||||
363
2021/24/old/precomp.go
Normal file
363
2021/24/old/precomp.go
Normal file
@@ -0,0 +1,363 @@
|
||||
package main
|
||||
|
||||
// import "fmt"
|
||||
|
||||
type RegisterState struct {
|
||||
value int
|
||||
last int
|
||||
known bool
|
||||
}
|
||||
|
||||
// @TODO Apply DRY
|
||||
// The function will go through all the instruction and precompute as much as possible
|
||||
func (p Program) precomp() Program {
|
||||
var np Program
|
||||
var r [4]RegisterState
|
||||
|
||||
// Initalize the registers
|
||||
for i := range r {
|
||||
r[i].known = true
|
||||
}
|
||||
|
||||
for _, i := range p {
|
||||
// fmt.Println(i)
|
||||
switch i.op {
|
||||
case INP:
|
||||
r[i.a].known = false
|
||||
np = append(np, i)
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
|
||||
case ADD:
|
||||
if r[i.a].known {
|
||||
r[i.a].value += i.b
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
np = append(np, i)
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
|
||||
case ADDR:
|
||||
if r[i.a].known && r[i.b].known {
|
||||
r[i.a].value += r[i.b].value
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].known {
|
||||
if r[i.a].value - r[i.a].last != 0 {
|
||||
np = append(np, Instruction{ADD, i.a, r[i.a].value - r[i.a].last})
|
||||
r[i.a].last = r[i.a].value
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
}
|
||||
|
||||
if r[i.b].known {
|
||||
if r[i.b].value - r[i.b].last != 0 {
|
||||
np = append(np, Instruction{ADD, i.b, r[i.b].value - r[i.b].last})
|
||||
r[i.b].last = r[i.b].value
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
}
|
||||
|
||||
r[i.a].known = false
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
np = append(np, i)
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
|
||||
case MUL:
|
||||
if i.b == 0 {
|
||||
r[i.a].value = 0
|
||||
if !r[i.a].known {
|
||||
r[i.a].value = 0
|
||||
r[i.a].last = 0
|
||||
r[i.a].known = true
|
||||
np = append(np, Instruction{MUL, i.a, 0})
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if i.b == 1 {
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].known {
|
||||
r[i.a].value *= i.b
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
np = append(np, i)
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
|
||||
case MULR:
|
||||
if r[i.a].known && r[i.a].value == 0 {
|
||||
r[i.a].value = 0
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.b].known && r[i.b].value == 0 {
|
||||
r[i.a].value = 0
|
||||
if !r[i.a].known {
|
||||
r[i.a].value = 0
|
||||
r[i.a].last = 0
|
||||
r[i.a].known = true
|
||||
np = append(np, Instruction{MUL, i.a, 0})
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.b].known && r[i.b].value == 1 {
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].known && r[i.b].known {
|
||||
r[i.a].value *= r[i.b].value
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].known {
|
||||
if r[i.a].value - r[i.a].last != 0 {
|
||||
np = append(np, Instruction{ADD, i.a, r[i.a].value - r[i.a].last})
|
||||
r[i.a].last = r[i.a].value
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
}
|
||||
|
||||
if r[i.b].known {
|
||||
if r[i.b].value - r[i.b].last != 0 {
|
||||
np = append(np, Instruction{ADD, i.b, r[i.b].value - r[i.b].last})
|
||||
r[i.b].last = r[i.b].value
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
}
|
||||
|
||||
r[i.a].known = false
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
np = append(np, i)
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
|
||||
case DIV:
|
||||
if i.b == 1 {
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].known {
|
||||
r[i.a].value /= i.b
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
np = append(np, i)
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
|
||||
case DIVR:
|
||||
if r[i.a].known && r[i.a].value == 0 {
|
||||
r[i.a].value = 0
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.b].known && r[i.b].value == 1 {
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].known && r[i.b].known {
|
||||
r[i.a].value /= r[i.b].value
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].known {
|
||||
if r[i.a].value - r[i.a].last != 0 {
|
||||
np = append(np, Instruction{ADD, i.a, r[i.a].value - r[i.a].last})
|
||||
r[i.a].last = r[i.a].value
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
}
|
||||
|
||||
if r[i.b].known {
|
||||
if r[i.b].value - r[i.b].last != 0 {
|
||||
np = append(np, Instruction{ADD, i.b, r[i.b].value - r[i.b].last})
|
||||
r[i.b].last = r[i.b].value
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
}
|
||||
|
||||
r[i.a].known = false
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
np = append(np, i)
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
|
||||
case MOD:
|
||||
if i.b == -1 {
|
||||
r[i.a].value = 0
|
||||
if !r[i.a].known {
|
||||
r[i.a].value = 0
|
||||
r[i.a].last = 0
|
||||
r[i.a].known = true
|
||||
np = append(np, Instruction{MUL, i.a, 0})
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if i.b == 1 {
|
||||
r[i.a].value = 0
|
||||
if !r[i.a].known {
|
||||
r[i.a].value = 0
|
||||
r[i.a].last = 0
|
||||
r[i.a].known = true
|
||||
np = append(np, Instruction{MUL, i.a, 0})
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].known {
|
||||
r[i.a].value %= i.b
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
np = append(np, i)
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
|
||||
case MODR:
|
||||
if r[i.a].known && r[i.a].value == 0 {
|
||||
r[i.a].value = 0
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.b].known && r[i.b].value == -1 {
|
||||
r[i.a].value = 0
|
||||
if !r[i.a].known {
|
||||
r[i.a].value = 0
|
||||
r[i.a].last = 0
|
||||
r[i.a].known = true
|
||||
np = append(np, Instruction{MUL, i.a, 0})
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.b].known && r[i.b].value == 1 {
|
||||
r[i.a].value = 0
|
||||
if !r[i.a].known {
|
||||
r[i.a].value = 0
|
||||
r[i.a].last = 0
|
||||
r[i.a].known = true
|
||||
np = append(np, Instruction{MUL, i.a, 0})
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].known && r[i.b].known {
|
||||
r[i.a].value %= r[i.b].value
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].known {
|
||||
if r[i.a].value - r[i.a].last != 0 {
|
||||
np = append(np, Instruction{ADD, i.a, r[i.a].value - r[i.a].last})
|
||||
r[i.a].last = r[i.a].value
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
}
|
||||
|
||||
if r[i.b].known {
|
||||
if r[i.b].value - r[i.b].last != 0 {
|
||||
np = append(np, Instruction{ADD, i.b, r[i.b].value - r[i.b].last})
|
||||
r[i.b].last = r[i.b].value
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
}
|
||||
|
||||
r[i.a].known = false
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
np = append(np, i)
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
|
||||
case EQL:
|
||||
if r[i.a].known {
|
||||
val := 0
|
||||
if r[i.a].value == i.b {
|
||||
val = 1
|
||||
}
|
||||
r[i.a].value = val
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
np = append(np, i)
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
|
||||
case EQLR:
|
||||
if i.a == i.b {
|
||||
r[i.a].value = 1
|
||||
if !r[i.a].known {
|
||||
r[i.a].value = 0
|
||||
r[i.a].last = 0
|
||||
r[i.a].known = true
|
||||
np = append(np, Instruction{MUL, i.a, 0})
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].known && r[i.b].known {
|
||||
val := 0
|
||||
if r[i.a].value == r[i.b].value {
|
||||
val = 1
|
||||
}
|
||||
r[i.a].value = val
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].known {
|
||||
if r[i.a].value - r[i.a].last != 0 {
|
||||
np = append(np, Instruction{ADD, i.a, r[i.a].value - r[i.a].last})
|
||||
r[i.a].last = r[i.a].value
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
}
|
||||
|
||||
if r[i.b].known {
|
||||
if r[i.b].value - r[i.b].last != 0 {
|
||||
np = append(np, Instruction{ADD, i.b, r[i.b].value - r[i.b].last})
|
||||
r[i.b].last = r[i.b].value
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
}
|
||||
}
|
||||
|
||||
r[i.a].known = false
|
||||
// fmt.Printf("- \t%v\n", r)
|
||||
np = append(np, i)
|
||||
// fmt.Printf("- \t%v\n", np[len(np)-1])
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// Emit all the non-zero known registers
|
||||
for i := range r {
|
||||
if r[i].known && r[i].value != 0 {
|
||||
np = append(np, Instruction{ADD, i, r[i].value})
|
||||
}
|
||||
}
|
||||
|
||||
return np
|
||||
}
|
||||
216
2021/24/old/quasi.go
Normal file
216
2021/24/old/quasi.go
Normal file
@@ -0,0 +1,216 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
type RegisterQuasiState struct {
|
||||
min int
|
||||
max int
|
||||
}
|
||||
|
||||
type SubProgram struct {
|
||||
program Program
|
||||
min int
|
||||
max int
|
||||
}
|
||||
|
||||
func minv(a int, b int) int {
|
||||
if a < b {
|
||||
return a
|
||||
}
|
||||
return b
|
||||
}
|
||||
|
||||
func maxv(a int, b int) int {
|
||||
if a > b {
|
||||
return a
|
||||
}
|
||||
return b
|
||||
}
|
||||
|
||||
// This function will try to eliminate eql statements
|
||||
func (p Program) quasi(prnt bool) (Program, []SubProgram) {
|
||||
var np Program
|
||||
var sp []SubProgram
|
||||
var r [4]RegisterQuasiState
|
||||
|
||||
counter1 := 0
|
||||
counter2 := 0
|
||||
broken := false
|
||||
|
||||
for index, i := range p {
|
||||
if !broken {
|
||||
switch i.op {
|
||||
case INP:
|
||||
counter2 = counter1
|
||||
counter1 = index
|
||||
|
||||
sp = append(sp, SubProgram{p[counter2:counter1], r[3].min, r[3].max})
|
||||
|
||||
if prnt {
|
||||
fmt.Println("")
|
||||
}
|
||||
r[i.a].min = 1
|
||||
r[i.a].max = 9
|
||||
|
||||
case ADD:
|
||||
r[i.a].min += i.b
|
||||
r[i.a].max += i.b
|
||||
|
||||
case ADDR:
|
||||
r[i.a].min = r[i.a].min + r[i.b].min
|
||||
r[i.a].max = r[i.a].max + r[i.b].max
|
||||
|
||||
case MUL:
|
||||
r[i.a].min *= i.b
|
||||
r[i.a].max *= i.b
|
||||
|
||||
if r[i.a].min > r[i.a].max {
|
||||
r[i.a].min, r[i.a].max = r[i.a].max, r[i.a].min
|
||||
}
|
||||
|
||||
case MULR:
|
||||
min1 := r[i.a].min * r[i.b].min
|
||||
min2 := r[i.a].min * r[i.b].max
|
||||
max1 := r[i.a].max * r[i.b].min
|
||||
max2 := r[i.a].max * r[i.b].max
|
||||
|
||||
r[i.a].min = minv(min1, minv(min2, minv(max1, max2)))
|
||||
r[i.a].max = maxv(min1, maxv(min2, maxv(max1, max2)))
|
||||
|
||||
case DIV:
|
||||
r[i.a].min /= i.b
|
||||
r[i.a].max /= i.b
|
||||
|
||||
if r[i.a].min > r[i.a].max {
|
||||
r[i.a].min, r[i.a].max = r[i.a].max, r[i.a].min
|
||||
}
|
||||
|
||||
case DIVR:
|
||||
min1 := r[i.a].min / r[i.b].min
|
||||
min2 := r[i.a].min / r[i.b].max
|
||||
max1 := r[i.a].max / r[i.b].min
|
||||
max2 := r[i.a].max / r[i.b].max
|
||||
|
||||
r[i.a].min = minv(min1, minv(min2, minv(max1, max2)))
|
||||
r[i.a].max = maxv(min1, maxv(min2, maxv(max1, max2)))
|
||||
|
||||
case EQL:
|
||||
if i.b < r[i.a].min || i.b > r[i.a].max {
|
||||
r[i.a].min = 0
|
||||
r[i.a].max = 0
|
||||
|
||||
if prnt {
|
||||
fmt.Printf("- %v \t %v\n", i, r)
|
||||
}
|
||||
np = append(np, Instruction{MUL, i.a, 0})
|
||||
if prnt {
|
||||
fmt.Printf("+ %v\n", np[len(np)-1])
|
||||
}
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].min == r[i.a].max {
|
||||
val := 0
|
||||
if r[i.a].min == i.b {
|
||||
val = 1
|
||||
}
|
||||
|
||||
r[i.a].min = val
|
||||
r[i.a].max = val
|
||||
|
||||
if prnt {
|
||||
fmt.Printf("- %v \t %v\n", i, r)
|
||||
}
|
||||
np = append(np, Instruction{MUL, i.a, 0})
|
||||
if prnt {
|
||||
fmt.Printf("+ %v\n", np[len(np)-1])
|
||||
}
|
||||
np = append(np, Instruction{ADD, i.a, 1})
|
||||
if prnt {
|
||||
fmt.Printf("+ %v\n", np[len(np)-1])
|
||||
}
|
||||
continue
|
||||
}
|
||||
|
||||
r[i.a].min = 0
|
||||
r[i.a].max = 1
|
||||
|
||||
case EQLR:
|
||||
if r[i.b].max < r[i.a].min || r[i.b].min > r[i.a].max {
|
||||
r[i.a].min = 0
|
||||
r[i.a].max = 0
|
||||
|
||||
if prnt {
|
||||
fmt.Printf("- %v \t %v\n", i, r)
|
||||
}
|
||||
np = append(np, Instruction{MUL, i.a, 0})
|
||||
if prnt {
|
||||
fmt.Printf("+ %v\n", np[len(np)-1])
|
||||
}
|
||||
continue
|
||||
}
|
||||
|
||||
if r[i.a].min == r[i.a].max && r[i.b].min == r[i.b].max {
|
||||
val := 0
|
||||
if r[i.a].min == r[i.b].min {
|
||||
val = 1
|
||||
}
|
||||
|
||||
r[i.a].min = val
|
||||
r[i.a].max = val
|
||||
|
||||
if prnt {
|
||||
fmt.Printf("- %v \t %v\n", i, r)
|
||||
}
|
||||
np = append(np, Instruction{MUL, i.a, 0})
|
||||
if prnt {
|
||||
fmt.Printf("+ %v\n", np[len(np)-1])
|
||||
}
|
||||
np = append(np, Instruction{ADD, i.a, 1})
|
||||
if prnt {
|
||||
fmt.Printf("+ %v\n", np[len(np)-1])
|
||||
}
|
||||
continue
|
||||
}
|
||||
|
||||
r[i.a].min = 0
|
||||
r[i.a].max = 1
|
||||
|
||||
case MOD:
|
||||
if r[i.a].max <= 0 || r[i.a].max >= i.b {
|
||||
r[i.a].max = i.b - 1
|
||||
}
|
||||
|
||||
if r[i.a].min <= 0 || r[i.a].min >= i.b {
|
||||
r[i.a].min = 0
|
||||
|
||||
}
|
||||
|
||||
// r[i.a].min = 0
|
||||
// r[i.a].max = i.b-1
|
||||
|
||||
if r[i.a].min > r[i.a].max {
|
||||
r[i.a].min, r[i.a].max = r[i.a].max, r[i.a].min
|
||||
}
|
||||
|
||||
|
||||
default:
|
||||
if prnt {
|
||||
fmt.Printf("\tBROKE: %v\n", i.op)
|
||||
}
|
||||
broken = true
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
if prnt {
|
||||
fmt.Printf("%v \t %v\n", i, r)
|
||||
}
|
||||
|
||||
np = append(np, i)
|
||||
}
|
||||
|
||||
sp = append(sp, SubProgram{p[counter1:], r[3].min, r[3].max})
|
||||
|
||||
return np, sp[1:]
|
||||
}
|
||||
Reference in New Issue
Block a user