#include <bits/stdc++.h>
using namespace std;
const int inf = 1e9;
const int dydis = (3e5+1);
int n, m, v, ind;
int x, y, kur, R;
int dbInd = 0, mInd = 0;
vector<int> allX;
vector<int> l, r, ml, mr;
vector<pair<int, int> > treeVals;
vector<vector<pair<int, int> > > base;
vector<pair<pair<int, int>, pair<int, int> > > mas;
bitset<dydis> circleRemoved;
bitset<(4 * 21 * dydis)> removed;
vector<pair<int, int> > kurYra[dydis];
vector<int> rightmost;
vector<int> sz;
vector<int> tevas;
int by[dydis];
vector<int> unique(vector<int> &a) {
vector<int> ret;
sort(a.begin(), a.end());
for(auto &x : a){
if(ret.size() == 0 || ret.back() != x) ret.push_back(x);
}
return ret;
}
int m1, m2;
void build(int v) {
if(v >= m){
l[v] = r[v] = dbInd++;
ml[v] = mInd;
for(auto x : base[l[v]]) {
treeVals[mInd++] = x;
}
mr[v] = mInd-1;
}else {
build(v*2);
build(v*2+1);
l[v] = l[v*2];
r[v] = r[v*2+1];
ml[v] = mInd;
m1 = ml[v*2];
m2 = ml[v*2+1];
while(true) {
if(m1 == mr[v*2]+1 && m2 == mr[v*2+1]+1) break;
if(m1 == mr[v*2]+1) {
treeVals[mInd++] = treeVals[m2++];
}else if(m2 == mr[v*2+1]+1){
treeVals[mInd++] = treeVals[m1++];
}else if(treeVals[m1] <= treeVals[m2]){
treeVals[mInd++] = treeVals[m1++];
}else {
treeVals[mInd++] = treeVals[m2++];
}
}
mr[v] = mInd-1;
}
for(int i = ml[v]; i <= mr[v]; i++) {
kurYra[treeVals[i].second].push_back({v, i});
}
}
int vec[4*21*dydis];
int id = 0, ret;
int fP(int v) {
id = 0;
while(true) {
vec[id++] = v;
ret = v;
if(tevas[v] == v) break;
v = tevas[v];
}
for(int i = 0; i < id; i++) tevas[vec[i]] = ret;
return ret;
}
void conn(int a, int b) {
a = fP(a);
b = fP(b);
if(sz[a] < sz[b]) swap(a, b);
tevas[b] = a;
sz[a] += sz[b];
rightmost[a] = max(rightmost[a], rightmost[b]);
}
void remove(int ind){
if(circleRemoved[ind]) return ;
circleRemoved[ind] = 1;
int i;
for(auto &x : kurYra[ind]) {
v = x.first;
i = x.second;
removed[i] = 1;
if(i-1 >= ml[v] && removed[i-1]) {
conn(i-1, i);
}
if(i+1 <= mr[v] && removed[i+1]) {
conn(i+1, i);
}
}
}
void print(int v) {
if(v < m){
print(v*2);
print(v*2+1);
}
cout << "v = " << v << ", [" << l[v] << "; " << r[v] << "], atitinkamas masyvas: [";
for(int i = ml[v]; i <= mr[v]; i++) {
if(removed[i]) continue;
cout << "(y=" << treeVals[i].first << ", i=" << treeVals[i].second << ")";
if(i != mr[v]) cout << ", ";
}
cout << "]\n";
}
long long X1, Y1, R1, X2, Y2, R2;
bool kertasi (int i, int j) {
X1 = mas[i].second.first; Y1 = mas[i].second.second; R1 = mas[i].first.first;
X2 = mas[j].second.first; Y2 = mas[j].second.second; R2 = mas[j].first.first;
return (X1 - X2) * (X1 - X2) + (Y1 - Y2) * (Y1 - Y2) <= (R1 + R2) * (R1 + R2);
}
int beg;
bitset<dydis> selected;
int selList[dydis];
int selInd = 0;
void find(int v, int L, int R, int down, int up){
if(L <= l[v] && r[v] <= R) {
beg = lower_bound(treeVals.begin() + ml[v], treeVals.begin() + mr[v] + 1, make_pair(down, -inf)) - treeVals.begin();
for(int i = beg; i <= mr[v]; i++) {
if(treeVals[i].first > up) break;
if(removed[i]) {
i = rightmost[fP(i)];
continue;
}
if(!selected[treeVals[i].second]) {
selected[treeVals[i].second] = 1;
selList[selInd++] = treeVals[i].second;
}
}
}else if(r[v] < L || R < l[v]) {
}else{
find(v*2, L, R, down, up);
find(v*2+1, L, R, down, up);
}
}
int main(){
cin.tie(NULL);
ios_base::sync_with_stdio(false);
treeVals.resize(4 * 21 * dydis);
l.resize(4 * dydis);
r.resize(4 * dydis);
ml.resize(4 * dydis);
mr.resize(4 * dydis);
rightmost.resize(4 * 21 * dydis);
sz.resize(4 * 21 * dydis);
tevas.resize(4 * 21 * dydis);
for(int i = 0; i < (int) tevas.size(); i++) {
tevas[i] = i;
sz[i] = 1;
rightmost[i] = i;
}
cin >> n;
for(int i = 0; i < n; i++) {
cin >> x >> y >> R;
mas.push_back({{R, -i}, {x, y}});
}
sort(mas.begin(), mas.end());
reverse(mas.begin(), mas.end());
for(auto &x : mas) x.first.second *= -1;
for(int i = 0; i < n; i++) {
allX.push_back(mas[i].second.first-mas[i].first.first);
allX.push_back(mas[i].second.first+mas[i].first.first);
}
allX = unique(allX);
base.resize(allX.size());
m = allX.size();
for(int i = 0; i < n; i++) {
x = mas[i].second.first;
y = mas[i].second.second;
R = mas[i].first.first;
kur = lower_bound(allX.begin(), allX.end(), x+R) - allX.begin();
base[kur].push_back({y-R, i});
base[kur].push_back({y+R, i});
kur = lower_bound(allX.begin(), allX.end(), x-R) - allX.begin();
base[kur].push_back({y-R, i});
base[kur].push_back({y+R, i});
}
for(auto &x : base) sort(x.begin(), x.end());
build(1);
return 0;
int L, R, ll, rr;
for(int i = 0; i < n; i++) {
if(circleRemoved[i]) continue;
L = mas[i].second.first - mas[i].first.first;
R = mas[i].second.first + mas[i].first.first;
ll = lower_bound(allX.begin(), allX.end(), L) - allX.begin();
rr = lower_bound(allX.begin(), allX.end(), R) - allX.begin();
selInd = 0;
find(1, ll, rr, mas[i].second.second - mas[i].first.first, mas[i].second.second + mas[i].first.first);
for(int j = 0; j < selInd; j++){
selected[selList[j]] = 0;
if(!kertasi(i, selList[j])) continue;
remove(selList[j]);
by[mas[selList[j]].first.second] = mas[i].first.second;
}
}
for(int i = 0; i < n; i++) {
cout << by[i] + 1 << " ";
}
return 0;
}
/*
5
0 0 3
5 -2 2
5 0 1
1 1 1
1 -3 1
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
*/
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
266 ms |
519316 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1989 ms |
882896 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
257 ms |
519264 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1605 ms |
867936 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
266 ms |
519316 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
266 ms |
519316 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |