-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
82 lines (76 loc) · 2.01 KB
/
main.cpp
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
#include "file.h"
#include <iostream>
#include <vector>
namespace aoc2017_day03 {
int sum(const std::vector<std::vector<long long>>& map, int x, int y) {
int s = 0;
for (int i = -1; i <= 1; ++i) {
for (int j = -1; j <= 1; ++j) {
s += map[x + i][y + j];
}
}
return s;
}
int part_1(int N = 347991) {
int sol = 0;
int k = 1;
while (k * k < N) {
k += 2;
sol++;
}
k -= 2;
int nr = k * k + 1;
for (int i = 0; i < 4; ++i) {
if (N <= nr + k) {
return sol + abs(N - nr - k / 2);
}
nr += k + 1;
}
return -1;
}
int part_2(int N = 347991) {
const int SIZE = 1000;
std::vector<std::vector<long long>> map(SIZE, std::vector<long long>(SIZE, 0));
int x = SIZE / 2, y = SIZE / 2;
int k = 2;
map[x][y] = 1;
while (true) {
y++;
for (int i = 0; i < k; ++i) {
map[x][y] = sum(map, x, y);
if (map[x][y] > N) return map[x][y];
x--;
}
x++;
y--;
for (int i = 0; i < k; ++i) {
map[x][y] = sum(map, x, y);
if (map[x][y] > N) return map[x][y];
y--;
}
y++;
x++;
for (int i = 0; i < k; ++i) {
map[x][y] = sum(map, x, y);
if (map[x][y] > N) return map[x][y];
x++;
}
x--;
y++;
for (int i = 0; i < k; ++i) {
map[x][y] = sum(map, x, y);
if (map[x][y] > N) return map[x][y];
y++;
}
y--;
k += 2;
}
}
}
#ifndef TESTING
int main() {
std::cout << "Part 1: " << aoc2017_day03::part_1() << std::endl;
std::cout << "Part 2: " << aoc2017_day03::part_2() << std::endl;
return 0;
}
#endif