-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathioi02p1.cpp
More file actions
137 lines (134 loc) · 4.26 KB
/
Copy pathioi02p1.cpp
File metadata and controls
137 lines (134 loc) · 4.26 KB
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
135
136
137
/*
a simle brute force solution (O(N^3)) is enough to score all
the points.
for each pair of unique points, a line can be drawn. extend that
line, and count the number of points that fall on that line.
ensure the points are of equidistance from each other, and that
they go all te way to the two ends of the line, since the frogs
start hoppoing from one end of the board and continue till the end.
*/
#include <bits/stdc++.h>
using namespace std;
const int MAX_RC = 5000 + 1;
bool flattened[MAX_RC][MAX_RC];
struct square {
int x, y;
};
vector <square> grass;
int R, C, N;
int get_dis(int x, int y, int dx, int dy) {
int ans = 0;
x += dx;
y += dy;
while (x >= 1 && x <= C && y >= 1 && y <= R) {
if (!flattened[x][y]) {
return -1e9;
}
ans++;
x += dx;
y += dy;
}
return ans;
}
int main() {
cin >> R >> C >> N;
grass.resize(N);
for (int i = 0; i < N; i++) {
int x, y;
cin >> y >> x;
flattened[x][y] = true;
grass[i] = {x, y};
}
int ans = 0;
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
if (i == j)
continue;
square sq1 = grass[i];
square sq2 = grass[j];
int tp = 2;
if (sq1.x > sq2.x && sq1.y < sq2.y) {
/*
line is like this
../ sq1
./.
sq2/..
*/
int dx = abs(sq1.x - sq2.x);
int dy = -abs(sq1.y - sq2.y);
tp += (get_dis(sq1.x, sq1.y, dx, dy) + get_dis(sq2.x, sq2.y, -dx, -dy));
} else if (sq2.x > sq1.x && sq2.y < sq1.y) {
/*
line is like this
../sq2
./.
sq1/..
*/
int dx = abs(sq1.x - sq2.x);
int dy = -abs(sq1.y - sq2.y);
tp += (get_dis(sq2.x, sq2.y, dx, dy) + get_dis(sq1.x, sq1.y, -dx, -dy));
} else if (sq1.x < sq2.x && sq1.y < sq2.y) {
/*
line is like this
sq1\..
.\.
..\sq2
*/
int dx = -abs(sq1.x - sq2.x);
int dy = -abs(sq1.y - sq2.y);
tp += (get_dis(sq1.x, sq1.y, dx, dy) + get_dis(sq2.x, sq2.y, -dx, -dy));
} else if (sq2.x < sq1.x && sq2.y < sq1.y) {
/*
line is like this
sq2\..
.\.
..\sq1
*/
int dx = -abs(sq1.x - sq2.x);
int dy = -abs(sq1.y - sq2.y);
tp += (get_dis(sq2.x, sq2.y, dx, dy) + get_dis(sq1.x, sq1.y, -dx, -dy));
} else if (sq1.y == sq2.y && sq1.x < sq2.x) {
/*
line is like this
sq1-----sq2
*/
int dx = abs(sq1.x - sq2.x);
tp += (get_dis(sq1.x, sq1.y, -dx, 0) + get_dis(sq2.x, sq2.y, dx, 0));
} else if (sq1.y == sq2.y && sq2.x < sq1.x) {
/*
line is like this
sq2-----sq1
*/
int dx = abs(sq1.x - sq2.x);
tp += (get_dis(sq2.x, sq2.y, -dx, 0) + get_dis(sq1.x, sq1.y, dx, 0));
} else if (sq1.x == sq2.x && sq1.y < sq2.y) {
/*
line is like this
sq1
|
|
|
sq2
*/
int dy = abs(sq1.y - sq2.y);
tp += (get_dis(sq1.x, sq1.y, 0, -dy) + get_dis(sq2.x, sq2.y, 0, dy));
} else {
/*
line is like this
sq2
|
|
|
sq1
*/
int dy = abs(sq1.y - sq2.y);
tp += (get_dis(sq2.x, sq2.y, 0, -dy) + get_dis(sq1.x, sq1.y, 0, dy));
}
ans = max(ans, tp);
}
}
if (ans <= 2)
cout << 0 << '\n';
else
cout << ans << '\n';
}