#include <bits/stdc++.h>
using namespace std;
void fastIO(){
ios_base::sync_with_stdio(false);
cin.tie(0);
}
int N;
pair<int, int> arr[100100];
long long st[400100];
long long addtag[400100];
void pushdown(int node, int l, int mid, int r){
st[node*2] += addtag[node]*(mid-l+1);
st[node*2+1] += addtag[node]*(r-mid);
addtag[node*2] += addtag[node];
addtag[node*2+1] += addtag[node];
addtag[node] = 0;
}
void U(int node, int l, int r, int tl, int tr, int val){
if (l > tr || r < tl)
return;
if (l >= tl && r <= tr){
st[node] += (long long)(r-l+1)*val;
addtag[node] += val;
return;
}
int mid = (l+r)/2;
pushdown(node, l, mid, r);
U(node*2, l, mid, tl, tr, val);
U(node*2+1, mid+1, r, tl, tr, val);
st[node] = st[node*2]+st[node*2+1];
}
long long S(int node, int l, int r, int ind){
if (l > ind || r < ind)
return 0;
if (l == r){
return st[node];
}
int mid = (l+r)/2;
pushdown(node, l, mid, r);
return S(node*2, l, mid, ind)+S(node*2+1, mid+1, r, ind);
}
int main(){
fastIO();
cin >> N;
for (int i = 1; i <= N; i++){
cin >> arr[i].first >> arr[i].second;
}
sort(arr+1, arr+1+N);
int l = 1;
for (int i = 1; i <= N; i++){
if (l+arr[i].second-1 <= arr[i].first){
U(1, 1, 100000, l, l+arr[i].second-1, 1);
l += arr[i].second-1;
l %= arr[i].first;
l++;
} else {
U(1, 1, 100000, l, arr[i].first, 1);
arr[i].second -= (arr[i].first-l+1);
U(1, 1, 100000, 1, arr[i].second, 1);
l = arr[i].second;
l %= arr[i].first;
l++;
}
}
long long ans = 0;
for (int i = 1; i <= 100000; i++){
long long cnt = S(1, 1, 100000, i);
ans += (cnt)*(cnt-1)/2;
}
cout << ans << "\n";
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
25 ms |
4428 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
20 ms |
4440 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
21 ms |
4428 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
21 ms |
4436 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
23 ms |
4420 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
29 ms |
4444 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
54 ms |
4972 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
77 ms |
5304 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
114 ms |
5860 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
143 ms |
6164 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
134 ms |
6272 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |