-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcpp.cpp
84 lines (78 loc) · 2.49 KB
/
cpp.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
83
84
#include <bits/stdc++.h>
using namespace std;
struct numEnt
{
string val;
short idxStart;
short idxEnd;
int lineIdx;
};
bool numberIsAdjacentToSymbol(numEnt num, vector<string> lines)
{
// TODO: Should instead use "not isNumeric && not isDot"
char symbols[] = {'*', '$', '#', '+', '-', '!', '%', '&', '/', '(', ')', '=', '@'};
for (char symbol : symbols)
{
for (int idx = num.idxStart; idx <= num.idxEnd; idx++)
{
if (num.idxStart > 0 && lines[num.lineIdx][idx - 1] == symbol)
return true;
if (num.idxEnd < lines[num.lineIdx].size() - 1 && lines[num.lineIdx][idx + 1] == symbol)
return true;
if (num.lineIdx > 0)
{
if (num.idxStart > 0 && lines[num.lineIdx - 1][idx - 1] == symbol)
return true;
if (num.idxEnd < lines[num.lineIdx - 1].size() - 1 && lines[num.lineIdx - 1][idx + 1] == symbol)
return true;
}
if (num.lineIdx < lines.size() - 1)
{
if (num.idxStart > 0 && lines[num.lineIdx + 1][idx - 1] == symbol)
return true;
if (num.idxEnd < lines[num.lineIdx + 1].size() - 1 && lines[num.lineIdx + 1][idx + 1] == symbol)
return true;
}
if (num.lineIdx > 0 && lines[num.lineIdx - 1][idx] == symbol)
return true;
if (num.lineIdx < lines.size() - 1 && lines[num.lineIdx + 1][idx] == symbol)
return true;
}
}
return false;
}
bool charIsNumeric(char c)
{
return (c >= '0' && c <= '9');
}
int main()
{
string s;
vector<numEnt> nums;
vector<string> lines;
while (cin >> s)
{
lines.push_back(s);
for (int i = 0; i < s.size(); i++)
{
if (charIsNumeric(s[i]))
{
numEnt num;
num.idxStart = i;
num.lineIdx = lines.size() - 1;
int j = i;
while (j < s.size() && charIsNumeric(s[j]))
j++;
num.idxEnd = j - 1;
string numStr = s.substr(num.idxStart, num.idxEnd - num.idxStart + 1);
num.val = numStr;
nums.push_back(num);
i = j;
}
}
}
int res = 0;
for (numEnt num : nums)
res += numberIsAdjacentToSymbol(num, lines) ? stoi(num.val) : 0;
cout << "Part 1: " << res << endl;
}