//Sylwia Sapkowska
#include <bits/stdc++.h>
#pragma GCC optimize("O3", "unroll-loops")
using namespace std;
void __print(int x) {cerr << x;}
void __print(long long x) {cerr << x;}
void __print(long double x) {cerr << x;}
void __print(char x) {cerr << '\'' << x << '\'';}
void __print(const char *x) {cerr << '\"' << x << '\"';}
void __print(const string &x) {cerr << '\"' << x << '\"';}
void __print(bool x) {cerr << (x ? "true" : "false");}
template<typename T, typename V>
void __print(const pair<T, V> &x) {cerr << '{'; __print(x.first); cerr << ", "; __print(x.second); cerr << '}';}
template<typename T>
void __print(const T &x) {int f = 0; cerr << '{'; for (auto &i: x) cerr << (f++ ? ", " : ""), __print(i); cerr << "}";}
void _print() {cerr << "]\n";}
template <typename T, typename... V>
void _print(T t, V... v) {__print(t); if (sizeof...(v)) cerr << ", "; _print(v...);}
#ifdef LOCAL
#define debug(x...) cerr << "[" << #x << "] = ["; _print(x)
#else
#define debug(x...)
#endif
#define int long long
typedef pair<int, int> T;
const int oo = 1e18, oo2 = 1e9+7, K = 30;
const int mod = 998244353;
struct circle{
int x, y, r, i;
circle(){}
circle(int _x, int _y, int _r, int _i){x = _x, y = _y, r = _r, i = _i;}
bool operator <(const circle&he)const {return r == he.r ? i < he.i : r > he.r; }
bool intersect(circle he){return (x - he.x) * (x - he.x) + (y - he.y) * (y - he.y) <= (r + he.r) * (r + he.r); }
};
void solve(){
int n; cin >> n;
vector<circle>a;
for (int i = 0; i<n; i++){
int x, y, r; cin >> x >> y >> r;
a.emplace_back(x, y, r, i);
}
sort(a.begin(), a.end());
for (auto [x, y, r, i]: a){
debug(x, y, r, i);
}
vector<int>ans(n, -1), ord(n);
for (int i = 0; i<n; i++) ord[a[i].i] = i;
debug(ord);
for (int rep = K; rep >= 1; rep--){
map<pair<int, int>, vector<int>>divide;
for (int i = 0; i<n; i++){
if (ans[i] == -1){
divide[{a[ord[i]].x >> rep, a[ord[i]].y >> rep}].emplace_back(i);
}
}
auto what = [&](int i){
debug(i);
T curr = {a[ord[i]].x >> rep, a[ord[i]].y >> rep};
debug(curr);
for (int x = -1; x <= 1; x++){
for (int y = -1; y <= 1; y++){
T s = {curr.first + x, curr.second + y};
debug(s, divide[s]);
for (auto idx: divide[s]){
if (ans[idx] == -1 && a[ord[i]].intersect(a[ord[idx]])){
debug(idx);
ans[idx] = i;
}
}
}
}
};
for (int i = 0; i<n; i++){
if (ans[i] == -1 && a[ord[i]].r >= (1<<(rep-1))){
what(i);
}
}
}
for (int i = 0; i<n; i++){
cout << ans[i]+1 << " ";
}
cout << "\n";
}
int32_t main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t = 1;
// cin >> t;
while (t--) solve();
return 0;
}
Compilation message
circle_selection.cpp: In function 'void solve()':
circle_selection.cpp:48:15: warning: structured binding declaration set but not used [-Wunused-but-set-variable]
48 | for (auto [x, y, r, i]: a){
| ^~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
316 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
0 ms |
212 KB |
Output is correct |
5 |
Correct |
1 ms |
212 KB |
Output is correct |
6 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
214 ms |
26472 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3022 ms |
55772 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
316 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
0 ms |
212 KB |
Output is correct |
5 |
Correct |
1 ms |
212 KB |
Output is correct |
6 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
316 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
0 ms |
212 KB |
Output is correct |
5 |
Correct |
1 ms |
212 KB |
Output is correct |
6 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |