#include<bits/stdc++.h>
#pragma GCC optimize("O3")
#define fi first
#define se second
#define pb push_back
#define pf push_front
#define mod 1000000007
using namespace std;
typedef long long ll;
struct hei
{
int h, ct;
};
hei v[100002];
bool cmp(hei a, hei b)
{
if(a.h == b.h)
return a.ct > b.ct;
return a.h < b.h;
}
int n, aib[100002];
ll ans = 0;
void update(int nod, int val)
{
for(; nod <= 100000; nod += (nod & (-nod)))
aib[nod] += val;
}
int compute(int nod)
{
int ans = 0;
for(; nod; nod -= (nod & (-nod)))
ans += aib[nod];
return ans;
}
ll gauss(int n)
{
return 1LL * n * (n-1) / 2;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n;
for(int i = 1; i <= n; ++i)
cin >> v[i].h >> v[i].ct;
sort(v+1, v+n+1, cmp);
for(int i = 1; i <= n; ++i)
{
int r = v[i].h;
int val = compute(v[i].ct);
int st = v[i].ct + 1;
int dr = r;
int lst = v[i].ct;
while(st <= dr)
{
int mid = (st + dr) / 2;
if(compute(mid) == val)
lst = mid, st = mid + 1;
else
dr = mid - 1;
}
int fi = v[i].ct;
st = 1;
dr = v[i].ct - 1;
while(st <= dr)
{
int mid = (st + dr) / 2;
if(compute(mid) == val)
fi = mid, dr = mid - 1;
else
st = mid + 1;
}
update(lst + 1, 1);
update(r + 1, -1);
v[i].ct -= (r - lst);
update(fi, 1);
update(fi + v[i].ct, -1);
}
for(int i = 1; i <= 100000; ++i)
ans += gauss(compute(i));
cout << ans;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
376 KB |
Output is correct |
2 |
Incorrect |
3 ms |
376 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1065 ms |
376 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1029 ms |
376 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1061 ms |
504 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
22 ms |
888 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1067 ms |
732 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1047 ms |
1016 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
81 ms |
1400 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1053 ms |
1144 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |