-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_4a.cpp
197 lines (182 loc) · 5.08 KB
/
template_4a.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cmath>
class Point {
public:
Point(){}
Point(int64_t a, int64_t b): x(a), y(b){}
int64_t x;
int64_t y;
};
bool operator== (const Point &a, const Point &b)
{
return a.x == b.x && a.y == b.y;
}
bool operator< (const Point &a, const Point &b)
{
if (a.x != b.x)
return a.x < b.x;
else
return a.y < b.y;
}
int cross(Point a, Point b)
{
return a.x * b.y - b.x * a.y;
}
bool segment_cross(Point a, Point b, Point c, Point d, bool debug = false)
{
if (std::min(a.x, b.x) > std::max(c.x, d.x) ||
std::max(a.x, b.x) < std::min(c.x, d.x) ||
std::min(a.y, b.y) > std::max(c.y, d.y) ||
std::max(a.y, b.y) < std::min(c.y, d.y))
return false;
Point ab(b.x - a.x, b.y - a.y);
Point ac(c.x - a.x, c.y - a.y);
Point ad(d.x - a.x, d.y - a.y);
Point cd(d.x - c.x, d.y - c.y);
Point ca(a.x - c.x, a.y - c.y);
Point cb(b.x - c.x, b.y - c.y);
int64_t c1 = cross(ab, ac);
int64_t c2 = cross(ab, ad);
int64_t c3 = cross(cd, ca);
int64_t c4 = cross(cd, cb);
if (debug)
{
printf("cross: %lld, %lld, %lld, %lld\n", c1, c2, c3, c4);
}
long long c12 = (long long)c1 * (long long)c2;
long long c34 = (long long)c3 * (long long)c4;
if (c12 <= 0 && c34 <= 0)
return true;
return false; // disjoint
}
bool inner_point(Point a, Point b, Point c, Point d)
{
Point bc(c.x - b.x, c.y - b.y);
Point ba(a.x - b.x, a.y - b.y);
Point bd(d.x - b.x, d.y - b.y);
int64_t c1 = cross(ba, bc);
int64_t c2 = cross(ba, bd);
if (c1 <= 0)
{
if (c2 >= 0)
{
return false;
}
else
{
double a1 = (ba.x*bc.x + ba.y*bc.y) / sqrt(bc.x*bc.x + bc.y*bc.y);
double a2 = (ba.x*bd.x + ba.y*bd.y) / sqrt(bd.x*bd.x + bd.y*bd.y);
if (a1 > a2)
return false;
else
return true;
}
}
else
{
if (c2 <= 0)
{
return true;
}
else
{
double a1 = (ba.x*bc.x + ba.y*bc.y) / sqrt(bc.x*bc.x + bc.y*bc.y);
double a2 = (ba.x*bd.x + ba.y*bd.y) / sqrt(bd.x*bd.x + bd.y*bd.y);
if (a1 > a2)
return true;
else
return false;
}
}
}
std::string determine_AB_location(const std::vector<Point>& V, int a, int b) {
/*
Given a simple polygon and its diagonal,
check, whether it is external, internal, or intersects the side.
V is an array of vertices of a polygon, a and b are indices of considered vertices.
Return one of the following messages: {"INTERSECT, "INTERNAL", "EXTERNAL"}.
*/
// YOUR CODE HERE
bool debug = false;
int cnt = V.size();
if (abs(a - b) == 1 || abs(a - b) == cnt - 1)
{
return "EXTERNAL";
}
Point va = V[a];
Point vb = V[b];
// if (va.x == 164 && va.y == -495 && vb.x == 103 && vb.y == -505)
// debug = true;
for (int i = 0; i < cnt; i++)
{
int next = i + 1;
Point c = V[i];
if (next == cnt)
next = 0;
// ignore the neighbour
if (i == a || i == b || next == a || next == b)
continue;
Point d = V[next];
if (segment_cross(va, vb, c, d))
{
if (debug)
{
printf("c: %lld %lld\n", c.x, c.y);
printf("d: %lld %lld\n", d.x, d.y);
segment_cross(va, vb, c, d, true);
}
return "INTERSECT";
}
}
// no cross
int b0 = b - 1;
int b1 = b + 1;
if (b0 < 0)
b0 = cnt - 1;
if (b1 >= cnt)
b1 = b1 - cnt;
Point vb0 = V[b0];
Point vb1 = V[b1];
if (inner_point(vb0, vb, vb1, va))
return "INTERNAL";
else
return "EXTERNAL";
}
int main() {
int n;
std::cin >> n;
int m;
std::vector<Point> V(n);
std::vector<int> V_coord(2 * n);
for (int &item : V_coord) {
std::cin >> item;
}
for (int i = 0; i < n; ++i) {
V[i].x = V_coord[2 * i];
V[i].y = V_coord[2 * i + 1];
}
int number_of_diags = 0;
// YOUR CODE HERE
for (int i = 0; i < V.size(); ++i) {
for (int j = i + 2; j < V.size(); ++j) {
// YOUR CODE HERE
if (i == 0 && j == V.size() - 1)
continue;
number_of_diags++;
}
}
std::cout << number_of_diags << std::endl;
for (int i = 0; i < V.size(); ++i) {
for (int j = i + 2; j < V.size(); ++j) {
// YOUR CODE HERE
if (i == 0 && j == V.size() - 1)
continue;
std::string result;
result = determine_AB_location(V, i, j);
std::cout << V[i].x << ' ' << V[i].y << ' ' << V[j].x << ' ' << V[j].y << ' ' << result << std::endl;
}
}
}