Submission #710276

#TimeUsernameProblemLanguageResultExecution timeMemory
710276vjudge1Circle selection (APIO18_circle_selection)C++17
0 / 100
3018 ms72884 KiB
/* Author : DeMen100ns (a.k.a Vo Khac Trieu) School : VNU-HCM High school for the Gifted fuck you adhoc */ #include <bits/stdc++.h> #define endl '\n' #define int long long using namespace std; template<typename T> int SIZE(T (&t)){ return t.size(); } template<typename T, size_t N> int SIZE(T (&t)[N]){ return N; } string to_string(char t){ return "'" + string({t}) + "'"; } string to_string(bool t){ return t ? "true" : "false"; } string to_string(const string &t, int x1=0, int x2=1e9){ string ret = ""; for(int i = min(x1,SIZE(t)), _i = min(x2,SIZE(t)-1); i <= _i; ++i){ ret += t[i]; } return '"' + ret + '"'; } string to_string(const char* t){ string ret(t); return to_string(ret); } template<size_t N> string to_string(const bitset<N> &t, int x1=0, int x2=1e9){ string ret = ""; for(int i = min(x1,SIZE(t)); i <= min(x2,SIZE(t)-1); ++i){ ret += t[i] + '0'; } return to_string(ret); } template<typename T, typename... Coords> string to_string(const T (&t), int x1=0, int x2=1e9, Coords... C); template<typename T, typename S> string to_string(const pair<T, S> &t){ return "(" + to_string(t.first) + ", " + to_string(t.second) + ")"; } template<typename T, typename... Coords> string to_string(const T (&t), int x1, int x2, Coords... C){ string ret = "["; x1 = min(x1, SIZE(t)); auto e = begin(t); advance(e,x1); for(int i = x1, _i = min(x2,SIZE(t)-1); i <= _i; ++i){ ret += to_string(*e, C...) + (i != _i ? ", " : ""); e = next(e); } return ret + "]"; } template<int Index, typename... Ts> struct print_tuple{ string operator() (const tuple<Ts...>& t) { string ret = print_tuple<Index - 1, Ts...>{}(t); ret += (Index ? ", " : ""); return ret + to_string(get<Index>(t)); } }; template<typename... Ts> struct print_tuple<0, Ts...> { string operator() (const tuple<Ts...>& t) { return to_string(get<0>(t)); } }; template<typename... Ts> string to_string(const tuple<Ts...>& t) { const auto Size = tuple_size<tuple<Ts...>>::value; return print_tuple<Size - 1, Ts...>{}(t); } void dbgr(){;} template<typename Heads, typename... Tails> void dbgr(Heads H, Tails... T){ cout << to_string(H) << " | "; dbgr(T...); } void dbgs(){;} template<typename Heads, typename... Tails> void dbgs(Heads H, Tails... T){ cout << H << " "; dbgs(T...); } #define dbgv(...) cout << to_string(__VA_ARGS__) << endl; #define dbg(...) cout << "[" << #__VA_ARGS__ << "]: "; dbgv(__VA_ARGS__); #define dbgr(...) dbgr(__VA_ARGS__); cout << endl; #define dbgm(...) cout << "[" << #__VA_ARGS__ << "]: "; dbgr(__VA_ARGS__); const int N = 3e5 + 5; const long long INF = 1e18 + 7; const int MAXA = 1e9; const int B = sqrt(N) + 5; array<int, 3> b[N]; set <int> s; set <pair<long double, int>> sd; int ans[N]; bool f[N]; struct point{ int x, y; bool operator <(const point& p) const{ return x < p.x || (x == p.x && y < p.y); } bool operator >(const point& p) const{ return x > p.x || (x == p.x && y > p.y); } } a[N]; pair<long double, int> d[N], e[N]; inline int dist(point a, point b){ int h1 = a.x - b.x; int h2 = a.y - b.y; return h1 * h1 + h2 * h2; } inline long double sdist(point a, point b){ return sqrt(dist(a, b)); } bool isintersect(array<int, 3> a, array<int, 3> b){ point a1, b1; a1.x = a[0]; a1.y = a[1]; b1.x = b[0]; b1.y = b[1]; return dist(a1, b1) <= (a[2] + b[2]) * (a[2] + b[2]); } inline void erase(int id){ s.erase(id); sd.erase(e[id]); } void solve(){ int n; cin >> n; for(int i = 1; i <= n; ++i){ int x, y, r; cin >> x >> y >> r; b[i] = {x, y, r}; a[i] = {x, y}; s.insert(i); } point p1 = a[1], p2 = a[1]; point p3 = {a[1].y, a[1].x}, p4 = {a[1].y, a[1].x}; for(int i = 1; i <= n; ++i){ p1 = min(p1, a[i]); p2 = max(p2, a[i]); p3 = min(p3, {a[1].y, a[1].x}); p4 = max(p4, {a[1].y, a[1].x}); d[i].second = i; } for(int i = 1; i <= n; ++i){ d[i].first = sdist(a[i], p1) + 10 * sdist(a[i], p2) + 100 * sdist(a[i], p3) + 1000 * sdist(a[i], p4); e[i] = d[i]; } sort(d + 1, d + n + 1); for(int i = 1; i <= n; ++i){ sd.insert(d[i]); } //dbg(e, 1, n); while (!s.empty()){ int id = *s.begin(); ans[id] = id; auto it = sd.find(e[id]); vector <int> er; er.push_back(id); int ct = 0; auto it1 = it; while (it1 != sd.begin()){ --it1; int id2 = (*it1).second; if (isintersect(b[id], b[id2])){ ans[id2] = id; er.push_back(id2); } else ++ct; if (ct == 100) break; } ct = 0; auto it2 = it; while (it2 != prev(sd.end())){ ++it2; int id2 = (*it2).second; if (isintersect(b[id], b[id2])){ ans[id2] = id; er.push_back(id2); } else ++ct; if (ct == 100) break; } for(int i : er){ erase(i); } er.clear(); } for(int i = 1; i<= n; ++i){ cout << ans[i] << " "; } } signed main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); // freopen("codeforces.inp","r",stdin); // freopen("codeforces.out","w",stdout); int t = 1; // cin >> t; while (t--) { solve(); } }
#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...