aboutsummaryrefslogtreecommitdiff
path: root/2020/eight.nim
blob: b923f76b1e5f210cbf22d6b05b3635dd294cbace (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
35
36
# Day Eight: Handheld Halting
import os, strutils, sequtils, sugar

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

func execute(program: seq[tuple[op: string, arg: int]]): (bool, 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)

let result: tuple[status: bool, acc: int] = execute(program)
echo result.acc

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