#include<bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int, int>
int N = 1<<17;
vector<int> bpro(2*N, 0);
vector<int> bmin(2*N, 0);
void update(int curr, int l, int r, int ll, int rr, int p)
{
if (l >= rr || r <= ll)
{
bpro[curr]+=p;
bmin[curr]+=p;
return;
}
if (l >= ll && r <= rr)
{
bpro[curr]+=p+1;
bmin[curr]+=p+1;
return;
}
p += bpro[curr];
bpro[curr] = 0;
int m = (l+r)/2;
update(curr*2, l, m, ll, rr, p);
update(curr*2+1, m, r, ll, rr, p);
bmin[curr] = min(bmin[curr*2], bmin[curr*2+1]);
}
int bsearch(int curr, int l, int r, int rr, int b, int p)
{
if (bmin[curr]+p > b || l >= rr)
{
bpro[curr]+=p;
bmin[curr]+=p;
return rr;
}
if (l+1 == r)
{
bpro[curr]+=p;
bmin[curr]+=p;
return l;
}
p += bpro[curr];
bpro[curr] = 0;
int m = (l+r)/2;
int mx = bsearch(curr*2, l, m, rr, b, p);
mx = min(mx, bsearch(curr*2+1, m, r, rr, b, p));
bmin[curr] = min(bmin[curr*2], bmin[curr*2+1]);
return mx;
}
int32_t main()
{
//freopen("input.txt", "r", stdin);
//freopen("output.txt", "w", stdout);
int n;
cin >> n;
vector<pii> height(n);
int left = 0;
int sol = 0;
for (int i = 0; i < n; i++)
{
int a, b;
cin >> a >> b;
height[i] = {a, b};
}
sort(height.begin(), height.end());
for (pii ele:height)
{
int h = ele.first;
int c = ele.second;
int ende = bmin[h-c+N];
int curr = h-c+N;
while (curr>1)
{
curr/=2;
ende += bpro[curr];
}
int lower = bsearch(1, 0, N, h, ende, 0);
int upper = bsearch(1, 0, N, h, ende-1, 0);
update(1, 0, N, upper, h, 0);
update(1, 0, N, lower, c-(h-upper)+lower, 0);
}
for (int i = 0; i < 1e5; i++)
{
int h = bmin[i+N];
int curr = i+N;
while (curr>1)
{
curr/=2;
h += bpro[curr];
}
sol += (h*(h-1))/2;
}
cout << sol << "\n";
return 0;
}
Compilation message
sails.cpp: In function 'int32_t main()':
sails.cpp:70:9: warning: unused variable 'left' [-Wunused-variable]
70 | int left = 0;
| ^~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4440 KB |
Output is correct |
2 |
Correct |
3 ms |
4560 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4444 KB |
Output is correct |
2 |
Correct |
2 ms |
4444 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4444 KB |
Output is correct |
2 |
Correct |
3 ms |
4556 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4444 KB |
Output is correct |
2 |
Correct |
6 ms |
4440 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
72 ms |
4444 KB |
Output is correct |
2 |
Correct |
268 ms |
4556 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1071 ms |
4700 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1024 ms |
5464 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1069 ms |
5724 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1010 ms |
6480 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1051 ms |
6748 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1052 ms |
7236 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |