-
Notifications
You must be signed in to change notification settings - Fork 0
/
contest-10164.cpp
86 lines (75 loc) · 2.13 KB
/
contest-10164.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
85
86
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
int count = 0;
vector<string> map;
for (int i = 0; i < 7; ++i)
{
string s;
cin >> s;
map.push_back(move(s));
}
for (int i = 0; i < 7; ++i)
{
for (int j = 0; j < 7; ++j)
{
if (map[i][j] == 'o')
{
if (j <= 1)
{
if (map[i][j + 1] == 'o' && map[i][j + 2] == '.')
{
++count;
}
if (i <= 4 && map[i + 1][j] == 'o' && map[i + 2][j] == '.')
{
++count;
}
if (i >= 2 && map[i - 1][j] == 'o' && map[i - 2][j] == '.')
{
++count;
}
}
else if (j >= 5)
{
if (map[i][j - 1] == 'o' && map[i][j - 2] == '.')
{
++count;
}
if (i <= 4 && map[i + 1][j] == 'o' && map[i + 2][j] == '.')
{
++count;
}
if (i >= 2 && map[i - 1][j] == 'o' && map[i - 2][j] == '.')
{
++count;
}
}
else
{
if (map[i][j + 1] == 'o' && map[i][j + 2] == '.')
{
++count;
}
if (map[i][j - 1] == 'o' && map[i][j - 2] == '.')
{
++count;
}
if (i <= 4 && map[i + 1][j] == 'o' && map[i + 2][j] == '.')
{
++count;
}
if (i >= 2 && map[i - 1][j] == 'o' && map[i - 2][j] == '.')
{
++count;
}
}
}
}
}
cout << count << endl;
return 0;
}