Submission #399795

#TimeUsernameProblemLanguageResultExecution timeMemory
399795my99nCircle selection (APIO18_circle_selection)C++14
0 / 100
546 ms76808 KiB
#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 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...