이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 3e5 + 5;
#define ll long long
#define ff first
#define ss second
#define pii pair <int, int>
int n, jog[N];
bool vis[N];
struct coordinate {
ll x, y, r, idx;
};
coordinate a[N];
bool intersect (coordinate x, coordinate y) {
ll a1 = (x.x - y.x) * (x.x - y.x), a2 = (x.y - y.y) * (x.y - y.y), a3 = (x.r + y.r) * (x.r + y.r);
return (a1 + a2 <= a3);
}
//void cykar (coordinate x) {
// cout << x.x << " " << x.y << " " << x.r << " " << x.idx << "\n";
//}
bool cmp (coordinate x, coordinate y) {
if (x.r > y.r) return 1;
else if (x.r == y.r and x.idx < y.idx) return 1;
return 0;
}
int main () {
// freopen ("input1.txt", "r", stdin);
cin >> n;
bool sub = 0;
for (int i = 1; i <= n; ++i) {
cin >> a[i].x >> a[i].y >> a[i].r;
a[i].idx = i;
if (a[i].y != 0) sub = 1;
}
sort (a + 1, a + n + 1, cmp);
if (sub) {
for (int i = 1; i <= n; ++i) {
if (vis[i]) continue;
jog[a[i].idx] = a[i].idx;
for (int j = i + 1; j <= n; ++j) {
if (vis[j]) continue;
if (intersect (a[i], a[j])) {
jog[a[j].idx] = a[i].idx;
vis[j] = 1;
}
}
}
}
else {
assert (1 == 0);
set <int> s;
map <int, int> val;
for (int i = 1; i <= n; ++i) {
int l = a[i].x - a[i].r, r = a[i].x + a[i].r;
if (i == 1) {
s.insert (l);
s.insert (r);
val[l] = a[i].idx;
val[r] = a[i].idx;
jog[a[i].idx] = a[i].idx;
}
else {
auto tr = s.lower_bound (l);
if (tr != s.end()) {
int x = *tr;
if (x <= r) {
jog[a[i].idx] = val[x];
continue;
}
else if (tr != s.begin()) {
tr--;
int y = *tr;
if (y <= l and r <= x) {
jog[a[i].idx] = val[x];
continue;
}
}
}
s.insert (l);
s.insert (r);
val[l] = a[i].idx;
val[r] = a[i].idx;
jog[a[i].idx] = a[i].idx;
}
}
}
for (int i = 1; i <= n; ++i) {
cout << jog[i] << " ";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |