aboutsummaryrefslogtreecommitdiff
path: root/2021/day07/day07.cpp
blob: f9bbd1a07f57956f60b8ca295e1a3cbf1844d4a3 (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
#include <iostream>
#include <fstream>
#include <string>
#include <vector>

#include "../utils.h"

long sumdist (std::vector<int> pos, int pole, int inc) {
	long sd = 0;
	for (auto p : pos) { 
		int n = abs(p-pole); 
		if (inc == 1) n = (n * (n+1)) / 2;
		sd += n;
   	}
	return sd;
}

int main (int argc, char *argv[]) {
	std::string raw;
	std::getline(std::ifstream(argv[1]), raw, '\0');
	std::vector<std::string> vec;
	split(vec, raw, ",");
	std::vector<int> pos;
	for (auto s : vec) pos.push_back(std::stoi(s));
	
	int minp = 10000, maxp = -10000;
	for (auto p : pos) {
		minp = std::min(minp, p);
		maxp = std::max(maxp, p);
	}
	int inc = argc > 2 ? atoi(argv[2]) : 0;
	long fuel = 100000000000;
	for (int i=minp; i<maxp; i++) {
		fuel = std::min(fuel, sumdist(pos, i, inc));
	}
	
	std::cout << "fuel: " << fuel << std::endl;

	return 0;
}