aboutsummaryrefslogtreecommitdiff
path: root/day02/day02.cpp
blob: dccb44a57322bb0cbc30f0911627fadd329740d6 (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <iostream>

int main (int argc, char *argv[]) {
	if (argc != 2) return 1;
	
	int depth = 0;
   	int	forward = 0;

	int aim = 0;
	int aim_depth = 0;

	FILE *f = fopen(argv[1], "r");
	char c = fgetc(f); 
	std::string command;
	while (c != EOF) {
		if (c == '\n') {
			auto token_space = command.find(" ");
			if (token_space != std::string::npos) {
				std::string op = command.substr(0, token_space);
				int amt = std::stoi(command.substr(token_space+1));
				if (op == "forward") {
					forward += amt;
					aim_depth += aim * amt;
				}
				if (op == "down") {
					depth += amt;
					aim += amt;
				}
				if (op == "up") {
					depth -= amt;
					aim -= amt;
				}
			} 
			command = "";
		}
		else command += c;
		c = fgetc(f);
	}

	std::cout << "depth " << depth << ", "
		<< "forward " << forward << ", "
		<< "product " << depth * forward << std::endl;

	std::cout << "using aim: depth " << aim_depth << ", "
		<< "forward " << forward << ", "
		<< "aim " << aim << ", "
		<< "product " << aim_depth * forward << std::endl;

	return 0;
}