aboutsummaryrefslogtreecommitdiff
path: root/2020/eight.nim
blob: a7b40f23afecd2ffd9b2731380360b19c6c82c57 (plain) (blame)
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
# Day Eight: Handheld Halting
import os, strutils, sequtils

let input: string = paramStr(1)
var program: seq[tuple[op: string, arg: int]] =
  map(split(strip(readFile(input)), '\n'),
  func (instr: string): (string, int) = return (instr[0..2], parseInt(instr[4..^1])))

func execute(program: seq[tuple[op: string, arg: int]]): tuple[status: bool, acc: int] =
  var executed = newSeq[bool](len(program))
  var i, acc: int = 0
  while i < len(program):
    if executed[i]:
      return (false, acc)
    else:
      executed[i] = true
    case program[i].op
    of "acc":
      inc(acc, program[i].arg)
      inc(i)
    of "jmp":
      inc(i, program[i].arg)
    of "nop":
      inc(i)
    else:
      discard
  return (true, acc)

echo execute(program).acc

for i, instruction in program:
  var program = program
  program[i].op = if program[i].op == "nop": "jmp" else: "nop"
  if execute(program).status: echo execute(program).acc