#include <bits/stdc++.h>
using namespace std;
const int N = 2010;
using ld = long double;
struct pr {
int i, j;
ld di;
bool operator < (const pr& o) const {
return di < o.di;
}
};
vector<pr> a;
int x[N], y[N], r[N], p[N];
vector<bool> ans[100005];
vector<array<int, 3>> qry;
int find(int u) {
return p[u] == u ? u : p[u] = find(p[u]);
}
void merge(int u, int v) {
p[find(v)] = find(u);
}
bool same_set(int u, int v) {
return find(u) == find(v);
}
ld dist(int i, int j) {
return sqrt(1.0 * (x[j] - x[i]) * (x[j] - x[i]) + 1.0 * (y[j] - y[i]) * (y[j] - y[i])) - r[i] - r[j];
}
int main() {
ios::sync_with_stdio(0); cin.tie(0);
int n, m, w, h;
cin >> n >> m >> w >> h;
for (int i = 1; i <= n; i++) cin >> x[i] >> y[i] >> r[i];
for (int i = 1; i <= n + 4; i++) p[i] = i;
for (int i = 1; i <= m; i++) {
int ra, e;
cin >> ra >> e;
qry.push_back({ra, e, i});
}
sort(qry.begin(), qry.end());
for (int i = 1; i <= n; i++) for (int j = i + 1; j <= n; j++) a.push_back((pr) {i, j, dist(i, j)});
int UP = n + 1;
int LEFT = n + 2;
int RIGHT = n + 3;
int DOWN = n + 4;
for (int i = 1; i <= n; i++) {
a.push_back({i, UP, (ld) (h - (y[i] + r[i]))});
a.push_back({i, LEFT, (ld) (x[i] - r[i])});
a.push_back({i, RIGHT, (ld) (w - (x[i] + r[i]))});
a.push_back({i, DOWN, (ld) (y[i] - r[i])});
}
sort(a.begin(), a.end());
for (auto& [ra, e, idx] : qry) {
int pt = 0;
while (pt < a.size() && 2 * ra >= a[pt].di) {
merge(a[pt].i, a[pt].j);
pt++;
}
vector<bool> can(5, 0);
if (e == 1) {
can[1] = 1;
can[2] = !(same_set(UP, DOWN) || same_set(LEFT, DOWN) || same_set(RIGHT, DOWN));
can[3] = !(same_set(LEFT, RIGHT) || same_set(LEFT, DOWN) || same_set(UP, DOWN) || same_set(UP, RIGHT));
can[4] = !(same_set(LEFT, RIGHT) || same_set(LEFT, DOWN) || same_set(LEFT, UP));
} else if (e == 2) {
can[1] = !(same_set(UP, DOWN) || same_set(LEFT, DOWN) || same_set(RIGHT, DOWN));
can[2] = 1;
can[3] = !(same_set(RIGHT, LEFT) || same_set(RIGHT, UP) || same_set(RIGHT, DOWN));
can[4] = !(same_set(UP, DOWN) || same_set(LEFT, RIGHT) || same_set(RIGHT, DOWN) || same_set(LEFT, UP));
} else if (e == 3) {
can[1] = !(same_set(LEFT, RIGHT) || same_set(LEFT, DOWN) || same_set(UP, DOWN) || same_set(UP, RIGHT));
can[2] = !(same_set(RIGHT, LEFT) || same_set(RIGHT, UP) || same_set(RIGHT, DOWN));
can[3] = 1;
can[4] = !(same_set(UP, LEFT) || same_set(UP, DOWN) || same_set(UP, RIGHT));
} else {
can[1] = !(same_set(LEFT, RIGHT) || same_set(LEFT, DOWN) || same_set(LEFT, UP));
can[2] = !(same_set(UP, DOWN) || same_set(LEFT, RIGHT) || same_set(RIGHT, DOWN) || same_set(LEFT, UP));
can[3] = !(same_set(UP, LEFT) || same_set(UP, DOWN) || same_set(UP, RIGHT));
can[4] = 1;
}
ans[idx] = can;
}
for (int i = 1; i <= m; i++) {
for (int j = 1; j <= 4; j++) if (ans[i][j]) cout << j;
cout << '\n';
}
}
/*
5 3
16 11
11 8 1
6 10 1
7 3 2
10 4 1
15 5 1
1 1
2 2
2 1
*/
Compilation message
park.cpp: In function 'int main()':
park.cpp:63:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<pr>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
63 | while (pt < a.size() && 2 * ra >= a[pt].di) {
| ~~~^~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
324 ms |
70332 KB |
Output is correct |
2 |
Correct |
320 ms |
70568 KB |
Output is correct |
3 |
Correct |
320 ms |
71856 KB |
Output is correct |
4 |
Correct |
322 ms |
71416 KB |
Output is correct |
5 |
Correct |
319 ms |
72128 KB |
Output is correct |
6 |
Correct |
318 ms |
70340 KB |
Output is correct |
7 |
Correct |
297 ms |
70072 KB |
Output is correct |
8 |
Incorrect |
301 ms |
71596 KB |
Output isn't correct |
9 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
117 ms |
9580 KB |
Output is correct |
2 |
Correct |
140 ms |
10944 KB |
Output is correct |
3 |
Correct |
130 ms |
10692 KB |
Output is correct |
4 |
Correct |
131 ms |
10572 KB |
Output is correct |
5 |
Correct |
132 ms |
10620 KB |
Output is correct |
6 |
Execution timed out |
2532 ms |
10044 KB |
Time limit exceeded |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
324 ms |
70332 KB |
Output is correct |
2 |
Correct |
320 ms |
70568 KB |
Output is correct |
3 |
Correct |
320 ms |
71856 KB |
Output is correct |
4 |
Correct |
322 ms |
71416 KB |
Output is correct |
5 |
Correct |
319 ms |
72128 KB |
Output is correct |
6 |
Correct |
318 ms |
70340 KB |
Output is correct |
7 |
Correct |
297 ms |
70072 KB |
Output is correct |
8 |
Incorrect |
301 ms |
71596 KB |
Output isn't correct |
9 |
Halted |
0 ms |
0 KB |
- |