summary refs log tree commit diff homepage
path: root/2020/day08.c
blob: 87b4585270742d7f11ab2accf4b1d54ae1612f91 (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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static struct Ins {
	char op[4];
	int arg;
} prog[1024];
static int acc;
static int pc;
static void step(void) {
	if (!strcmp(prog[pc].op, "acc")) {
		acc += prog[pc].arg;
	} else if (!strcmp(prog[pc].op, "jmp")) {
		pc += prog[pc].arg;
		return;
	}
	pc++;
}
int main(void) {
	int i = 0;
	while (EOF != scanf("%s %d\n", prog[i].op, &prog[i].arg)) {
		i++;
	}
	int ran[1024] = {0};
	while (!ran[pc]++) {
		step();
	}
	printf("%d\n", acc);
}