aboutsummaryrefslogtreecommitdiff
path: root/day04/day04.cpp
blob: 7736eff9cd4c948548d396801d1cacef3dafce55 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#include <iostream>
#include <fstream>
#include <vector>

void split (std::vector<std::string> &vec, std::string str, std::string del) {
	auto token = str.find(del);
	if (token != std::string::npos) {
		vec.push_back(str.substr(0, token));
		split(vec, str.substr(token+del.size()), del);
	} else { vec.push_back(str); }
}

class Board {
	public:
	Board(std::string repr) { 
		std::vector<std::string> lines;
		split(lines, repr, "\n");
		for (auto line : lines) {
			std::vector<std::string> strcells;
			split(strcells, line, " ");
			size = 0;
			for (auto strcell : strcells) {
				if (strcell.size() == 0) continue;
				cells.push_back(std::stoi(strcell));
				state.push_back(0);
				size++;
			}
		}

	}

	int size;
	std::vector<int> cells;
	std::vector<int> state;

	void mark (int ex) {
		for (int y=0; y<size; y++) {
			for (int x=0; x<size; x++) {
				int i = x + y*size;
				if (cells[i] == ex) {
					state[i] = 1;
				}
			}
		}
	}

	bool win () {
		for (int y=0; y<size; y++) {
			int sum_row = 0;
			for (int x=0; x<size; x++) {
				int i = x + y*size;
				sum_row += state[i];
			}
			if (sum_row == size) return true;
		}
		for (int x=0; x<size; x++) {
			int sum_col = 0;
			for (int y=0; y<size; y++) {
				int i = x + y*size;
				sum_col += state[i];
			}
			if (sum_col == size) return true;
		}
		return false;
	}

	int score () {
		int sum = 0;
		for (int y=0; y<size; y++) {
			for (int x=0; x<size; x++) {
				int i = x + y*size;
				if (state[i] == 0) {
					sum += cells[i];
				}
			}
		}
		return sum;
	}
};

int main (int argc, char *argv[]) {
	if (argc != 2) return 1;
	std::string raw;
	std::getline(std::ifstream(argv[1]), raw, '\0');

	std::vector<int> extract;
	auto token = raw.find("\n");
	if (token != std::string::npos) {
		std::string ex = raw.substr(0, token);
		std::vector<std::string> vec;
	   	split(vec, ex, ",");
		for (auto v : vec) { extract.push_back(std::stoi(v)); }

		raw = raw.substr(token+2);
		if (raw[raw.size()-1] == '\n') raw = raw.substr(0, raw.size()-1); 
	} else return 1;

	std::vector<Board> boards;

	std::vector<std::string> str_boards;
	split(str_boards, raw, "\n\n");
	for (auto s : str_boards) {
		boards.emplace_back(s);
	}

	bool flag = false;
	std::vector<Board> filtered = boards;
	for (int ex : extract) {
		std::cout << ex << " " << filtered.size() << std::endl;
		std::vector<Board> next;
		int size = filtered.size(), seen = 0;;
		for (auto& board : filtered) {
			board.mark(ex);
			if (board.win() && filtered.size() != 1) {
				if (!flag) {
					std::cout << "first winner product: " << ex * board.score() << ", "
						<< "ex: " << ex << ", score: " << board.score() << std::endl;
					flag = true;
				}
			} else {
				next.push_back(board);
			}
		}
		if (next.size() == 1 && next[0].win()) {
			int score = next[0].score();
			std::cout << "last winner product: " << ex * score << ", "
				<< "ex: " << ex << ", score: " << score << std::endl;
			break;
		}
		filtered = next;
	}

	return 0;
}