Submission #544184

#TimeUsernameProblemLanguageResultExecution timeMemory
544184amunduzbaevCircle selection (APIO18_circle_selection)C++17
7 / 100
1248 ms40120 KiB
#include "bits/stdc++.h" using namespace std; #define ar array #define int long long const double eps = 1e-10; struct poi{ int x, y, r; }; signed main(){ ios::sync_with_stdio(0); cin.tie(0); int n; cin>>n; vector<poi> a(n); vector<set<ar<int, 2>>> pp; vector<int> used(n), tot; int R; auto get = [&](int x){ return (x / R) - (x < 0); }; auto rec = [&](){ pp.clear(); tot.clear(); for(int i=0;i<n;i++) { if(used[i]) continue; tot.push_back(get(a[i].x)); } sort(tot.begin(), tot.end()); tot.erase(unique(tot.begin(), tot.end()), tot.end()); pp.resize(tot.size()); for(int i=0;i<n;i++){ if(used[i]) continue; auto j = lower_bound(tot.begin(), tot.end(), get(a[i].x)) - tot.begin(); assert(j < (int)tot.size()); pp[j].insert({a[i].y, i}); } }; vector<int> p(n); for(int i=0;i<n;i++){ p[i] = i; cin>>a[i].x>>a[i].y>>a[i].r; } sort(p.begin(), p.end(), [&](int i, int j){ return (a[i].r > a[j].r); }); auto sq = [&](int x) { return x * 1ll * x; }; auto dis = [&](int i, int j) -> double{ return sqrt(sq(a[i].x - a[j].x) + sq(a[i].y - a[j].y)); }; auto check = [&](int i, int j){ return (a[i].r + a[j].r - dis(i, j) > eps); }; R = a[p[0]].r; rec(); for(auto i : p){ if(used[i]) continue; if(a[i].r * 2 <= R) R = a[i].r, rec(); int l = lower_bound(tot.begin(), tot.end(), get(a[i].x) - 2) - tot.begin(); int r = upper_bound(tot.begin(), tot.end(), get(a[i].x) + 2) - tot.begin(); int lx = (get(a[i].y) - 2) * R; int rx = (get(a[i].y) + 3) * R; for(int j=l;j<r;j++){ auto it = pp[j].lower_bound({lx, -1}); vector<ar<int, 2>> er; while(it != pp[j].end() && (*it)[0] < rx){ if(check((*it)[1], i)){ er.push_back(*it); } it++; } for(auto x : er) pp[j].erase(x), used[x[1]] = i + 1; } } for(int i=0;i<n;i++) cout<<used[i]<<" "; cout<<"\n"; } /* 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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...