# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
456478 |
2021-08-06T21:57:37 Z |
dutch |
Pairs (IOI07_pairs) |
C++17 |
|
432 ms |
41820 KB |
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define sp << ' ' <<
#define nl << '\n'
const int LIM = 1e5+1, B = 250;
int b, n, d, ans, x[LIM], y[LIM], z[LIM], F[LIM*2];
int s[80][B][B];
void add(int i, int v){
for(; i<=LIM*2; i+=i&-i) F[i] += v;
}
int get(int i){
int v = 0;
for(; i>=1; i-=i&-i) v += F[i];
return v;
}
signed main(){
cin.tie(0)->sync_with_stdio(0);
cin >> b >> n >> d >> x[0];
if(b == 1){
for(int i=0; i<n; ++i)
cin >> x[i];
sort(x, x+n);
for(int i=0, j=0; i<n; ++i){
while(j+1 < n && x[j+1]-x[i]<=d) ++j;
ans += j-i;
}
}
if(b == 2){
array<int, 2> a[n];
for(int i=0; i<n; ++i){
cin >> x[i] >> y[i];
a[i][1] = x[i] + y[i] + LIM;
a[i][0] = x[i] - y[i] + LIM;
}
sort(a, a+n);
for(int i=0; i<n; ++i){
x[i] = a[i][1];
y[i] = a[i][0];
}
int l = 0, r = 0;
for(int i=0; i<n; ++i){
while(r < n && y[r]-y[i] <= d)
add(x[r++], 1);
while(y[i]-y[l] > d)
add(x[l++], -1);
ans += get(x[i]+d) - get(x[i]-d-1);
}
(ans -= n) /= 2;
}
if(b == 3){
for(int i=0; i<n; ++i){
cin >> x[n] >> y[n] >> z[i];
x[i] = x[n] + y[n] + 80;
y[i] = x[n] - y[n] + 80;
++s[z[i]][x[i]][y[i]];
}
for(int i=0; i<80; ++i)
for(int j=1; j<B; ++j)
for(int k=1; k<B; ++k)
s[i][j][k] += s[i][j-1][k] + s[i][j][k-1] - s[i][j-1][k-1];
for(int i=0; i<n; ++i){
int fLim = min(z[i]+d, 79LL), diff;
for(int f=max(z[i]-d, 0LL); f<=fLim; ++f){
diff = abs(z[i] - f);
int a1 = max(x[i] - d + diff - 1, 0LL);
int a2 = min(x[i] + d - diff, 239LL);
int b1 = max(y[i] - d + diff - 1, 0LL);
int b2 = min(y[i] + d - diff, 239LL);
ans += s[f][a2][b2] - s[f][a1][b2] - s[f][a2][b1] + s[f][a1][b1];
}
}
(ans -= n) /= 2;
}
cout << ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
0 ms |
204 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
332 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
15 ms |
1048 KB |
Output is correct |
2 |
Correct |
15 ms |
1100 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
21 ms |
1100 KB |
Output is correct |
2 |
Correct |
20 ms |
1052 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
23 ms |
1100 KB |
Output is correct |
2 |
Correct |
20 ms |
992 KB |
Output is correct |
3 |
Correct |
19 ms |
1060 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
972 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
36 ms |
3532 KB |
Output is correct |
2 |
Correct |
34 ms |
3436 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
43 ms |
3408 KB |
Output is correct |
2 |
Correct |
38 ms |
3384 KB |
Output is correct |
3 |
Correct |
38 ms |
3380 KB |
Output is correct |
4 |
Correct |
38 ms |
3424 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
51 ms |
4100 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
36 ms |
39364 KB |
Output is correct |
2 |
Correct |
33 ms |
39460 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
59 ms |
41712 KB |
Output is correct |
2 |
Correct |
67 ms |
41788 KB |
Output is correct |
3 |
Correct |
81 ms |
41736 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
104 ms |
41784 KB |
Output is correct |
2 |
Correct |
389 ms |
41708 KB |
Output is correct |
3 |
Correct |
231 ms |
41784 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
275 ms |
41820 KB |
Output is correct |
2 |
Correct |
432 ms |
41784 KB |
Output is correct |
3 |
Correct |
277 ms |
41796 KB |
Output is correct |