#include <bits/stdc++.h>
#define INF 1e+18
#define int long long
#define LIM 100010
using namespace std;
typedef pair<int,int> P;
int bit[LIM];
void add(int i,int x){
while(i < LIM){
bit[i] += x;
i += i & -i;
}
}
int get(int i){
int s = 0;
while(i){
s += bit[i];
i -= i & -i;
}
return s;
}
int lb(int x){
int low = 0,up = LIM;
while(up - low > 1){
int mid = (low + up) / 2;
if(get(mid) <= x) up = mid;
else low = mid;
}
return up;
}
signed main(){
int n,ans = 0;
vector<P> vec;
cin >> n;
for(int i = 0;i < n;i++){
int a,b;
cin >> a >> b;
vec.push_back(P(a,b));
}
sort(vec.begin(),vec.end());
for(P p : vec){
int h = p.first,k = p.second,num = get(h - k + 1),i1 = lb(num),i2 = lb(num - 1);
if(i2 < h + 1){
add(i2,1);
add(h + 1,-1);
add(i1,1);
add(i1 + k - (h + 1 - i2),-1);
}else{
add(i1,1);
add(i1 + k,-1);
}
}
for(int i = 0;i < LIM;i++){
int s = get(i);
ans += s * (s - 1) / 2;
}
cout << ans << endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
376 KB |
Output is correct |
2 |
Correct |
4 ms |
396 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
452 KB |
Output is correct |
2 |
Correct |
3 ms |
688 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
688 KB |
Output is correct |
2 |
Correct |
4 ms |
688 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
688 KB |
Output is correct |
2 |
Correct |
5 ms |
688 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
936 KB |
Output is correct |
2 |
Correct |
6 ms |
1492 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
16 ms |
1492 KB |
Output is correct |
2 |
Correct |
49 ms |
1852 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
51 ms |
2328 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
96 ms |
3308 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
148 ms |
5136 KB |
Output is correct |
2 |
Correct |
135 ms |
6136 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
148 ms |
7156 KB |
Output is correct |
2 |
Correct |
126 ms |
7824 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
170 ms |
9192 KB |
Output is correct |
2 |
Correct |
146 ms |
9812 KB |
Output is correct |