#include<bits/stdc++.h>
using namespace std;
#define x first
#define y second
typedef pair<long long,long long> point;
struct A {
long long x, y, r;
int i;
bool operator < (const A & o) const {
if (x == o.x) return i < o.i;
return x < o.x;
}
} cir[300100];
set<A> s;
bool compare (A & a, A & b) {
if (a.r == b.r) return a.i < b.i;
return a.r > b.r;
}
int ans[300100];
long long dis (point i, point j) {
long long temp = ((i.x-j.x) * (i.x-j.x)) + ((i.y-j.y) * (i.y-j.y));
return temp;
}
bool intersect (A i, A j) {
return (dis({i.x, i.y}, {j.x, j.y}) <= (i.r+j.r)*(i.r+j.r));
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n; cin >> n;
for (int i = 1; i <= n; i++) {
long long x, y, r; cin >> x >> y >> r;
cir[i] = {x, y, r, i};
s.insert({x, y, r, i});
}
sort(cir+1, cir+1+n, compare);
// cerr << "here" << endl;
for (int i = 1; i <= n; i++) {
int ind = cir[i].i;
if (ans[ind]) continue;
// ans[ind] = ind;
auto a = s.lower_bound(cir[i]);
// cerr << cir[i].i << endl;
// cerr << a->i << endl;
if (a != s.begin()) {
auto x = prev(a);
for (; x != s.begin(); x--) {
if (!intersect(*x, cir[i])) break;
ans[x->i] = ind;
s.erase(x);
}
// cerr << "yay " << endl;
if (x == s.begin() and intersect(*x, cir[i])) {
ans[x->i] = ind;
s.erase(x);
}
}
// cerr << "tne" << endl;
auto x = a;
while (x != s.end()) {
// cerr << x->i << endl;
if (!intersect(*x, cir[i])) break;
ans[x->i] = ind;
auto temp = x++;
s.erase(temp);
}
// cerr << "h," << endl;
}
for (int i = 1; i <= n; i++) {
cout << ans[i] << ' ';
} cout << endl;
return 0;
}
/*
11
9 9 2
13 2 1
11 8 2
3 3 2
3 12 1
12 14 1
9 8 5
2 8 2
5 2 1
14 4 2
14 14 1
*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
1 ms |
204 KB |
Output is correct |
4 |
Correct |
1 ms |
332 KB |
Output is correct |
5 |
Correct |
1 ms |
332 KB |
Output is correct |
6 |
Runtime error |
2 ms |
460 KB |
Execution killed with signal 11 |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
369 ms |
76208 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
546 ms |
76808 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
1 ms |
204 KB |
Output is correct |
4 |
Correct |
1 ms |
332 KB |
Output is correct |
5 |
Correct |
1 ms |
332 KB |
Output is correct |
6 |
Runtime error |
2 ms |
460 KB |
Execution killed with signal 11 |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
1 ms |
204 KB |
Output is correct |
4 |
Correct |
1 ms |
332 KB |
Output is correct |
5 |
Correct |
1 ms |
332 KB |
Output is correct |
6 |
Runtime error |
2 ms |
460 KB |
Execution killed with signal 11 |
7 |
Halted |
0 ms |
0 KB |
- |