#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
#define ALL(v) (v).begin(), (v).end()
#define MASK(i) (1LL << (i))
#define GETBIT(mask, i) (((mask) >> (i)) & 1)
// mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
mt19937_64 rng(1);
ll rngesus(ll l, ll r){return ((ull) rng()) % (r - l + 1) + l;}
ll max(ll a, ll b){return (a > b) ? a : b;}
ll min(ll a, ll b){return (a < b) ? a : b;}
ll LASTBIT(ll mask){return mask & (-mask);}
ll pop_cnt(ll mask){return __builtin_popcountll(mask);}
ll ctz(ll mask){return __builtin_ctzll(mask);}
ll clz(ll mask){return __builtin_clzll(mask);}
ll logOf(ll mask){return 63 - clz(mask);}
template <class T1, class T2>
bool minimize(T1 &a, T2 b){
if (a > b){a = b; return true;}
return false;
}
template <class T1, class T2>
bool maximize(T1 &a, T2 b){
if (a < b){a = b; return true;}
return false;
}
template <class T>
void printArr(T& a, string separator = " ", string finish = "\n", ostream& out = cout){
for(auto i: a) out << i << separator;
out << finish;
}
template <class T>
void remove_dup(vector<T> &a){
sort(ALL(a));
a.resize(unique(ALL(a)) - a.begin());
}
const int N = 3e5 + 69;
const ll INF = 1e9;
int n;
int ans[N];
vector<array<ll, 4>> a;
ll sqr(ll x){return x * x;}
ll block_sz = 10;
map<pair<ll, ll>, vector<int>> grid;
pair<ll, ll> dumb_down(pair<ll, ll> a){
return {a.first / block_sz, a.second / block_sz};
}
void set_up(int arg){
block_sz = arg;
grid.clear();
for(int i= 1; i<=n; ++i) if (ans[i] == 0){
grid[dumb_down(make_pair(a[i][0], a[i][1]))].push_back(i);
}
}
ll dis(pair<ll, ll> a, pair<ll, ll> b){return sqr(a.first - b.first) + sqr(a.second - b.second);}
bool check(pair<ll, ll> point, ll r, pair<ll, ll> des){
if (des.first < 0 || des.second < 0) return false;
for(int x = 0; x <= 1; ++x) for(int y = 0; y<=1; ++y){
pair<ll, ll> ligma = {des.first * block_sz, des.second * block_sz};
if (x) ligma.first += block_sz - 1;
if (y) ligma.second += block_sz - 1;
if (dis(point, ligma) <= sqr(r)) return true;
}
return false;
}
bool query(int i, int j){
return sqr(a[i][0] - a[j][0]) + sqr(a[i][1] - a[j][1]) <= sqr(a[i][2] + a[j][2]);
}
int main(void){
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n;
a.resize(n+1);
for(int i = 1; i<=n; ++i) {
for(int j = 0; j < 3; ++j) cin >> a[i][j];
a[i][0] += 1e9; a[i][1] += 1e9;
a[i][3] = i;
}
vector<array<ll, 4>> b = a;
sort(1 + ALL(b), [](array<ll, 4> x, array<ll, 4> y){
if (x[2] != y[2]) return x[2] > y[2];
return x[3] < y[3];
});
set_up((b[1][2] + 1) / 2);
for(int i = 1; i<=n; ++i) if (ans[b[i][3]] == 0){
int _i = b[i][3];
ans[_i] = _i;
if (b[i][2] < block_sz)
set_up((b[i][2] + 1) / 2);
pair<ll, ll> cur = make_pair(b[i][0], b[i][1]);
pair<ll, ll> magnifico = dumb_down(cur);
for(int x = -4; x <= 4; ++x) for(int y = -4; y<=4; ++y) {
pair<ll, ll> cu = make_pair(magnifico.first + x, magnifico.second + y);
if (!check(cur, b[i][2] * 2, cu) || !grid.count(cu)) continue;
for(int j: grid[cu]){
if (query(_i, j)) ans[j] = _i;
}
}
}
for(int i = 1; i<=n; ++i)
cout << ans[i] << " ";
cout << "\n";
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
6 |
Correct |
0 ms |
348 KB |
Output is correct |
7 |
Correct |
0 ms |
348 KB |
Output is correct |
8 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
9 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
114 ms |
29792 KB |
Output is correct |
2 |
Incorrect |
125 ms |
29144 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
471 ms |
21372 KB |
Output is correct |
3 |
Correct |
2077 ms |
63220 KB |
Output is correct |
4 |
Correct |
1921 ms |
63204 KB |
Output is correct |
5 |
Correct |
1742 ms |
59736 KB |
Output is correct |
6 |
Correct |
556 ms |
31056 KB |
Output is correct |
7 |
Correct |
221 ms |
16728 KB |
Output is correct |
8 |
Correct |
35 ms |
3676 KB |
Output is correct |
9 |
Correct |
2079 ms |
62896 KB |
Output is correct |
10 |
Correct |
1461 ms |
59784 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1921 ms |
62464 KB |
Output is correct |
2 |
Correct |
956 ms |
62248 KB |
Output is correct |
3 |
Incorrect |
574 ms |
52684 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
6 |
Correct |
0 ms |
348 KB |
Output is correct |
7 |
Correct |
0 ms |
348 KB |
Output is correct |
8 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
9 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
6 |
Correct |
0 ms |
348 KB |
Output is correct |
7 |
Correct |
0 ms |
348 KB |
Output is correct |
8 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
9 |
Halted |
0 ms |
0 KB |
- |