forked from mrsac7/CSES-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
2169 - Nested Ranges Count.cpp
75 lines (68 loc) · 1.66 KB
/
2169 - Nested Ranges Count.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
Problem Name: Nested Ranges Count
Problem Link: https://cses.fi/problemset/task/2169
Author: Sachin Srivastava (mrsac7)
*/
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define endl '\n'
#define F first
#define S second
map<int,int> mp;
const int N = 2e5+1;
int T[N+1]={0};
void update(int n, int x, int val){
for(;x<=n; x+=x&-x) T[x]+=val;
}
int query(int x){
int s=0;
for(;x>0;x-=x&-x) s+=T[x];
return s;
}
bool comp(pair<pair<int,int>,int> a, pair<pair<int,int>,int> b) {
if (a.F.F == b.F.F)
return a.F.S > b.F.S;
return a.F.F < b.F.F;
}
signed main(){
ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#ifdef LOCAL
freopen("input.txt", "r" , stdin);
freopen("output.txt", "w", stdout);
#endif
int n; cin>>n;
set<int> b;
vector<pair<pair<int,int>, int>> v(n);
for (int i = 0; i < n; i++) {
int x, y; cin>>x>>y;
v[i].S = i;
v[i].F = {x, y};
b.insert(y);
}
int cnt = 0;
for (auto i: b) {
mp[i] = ++cnt;
}
sort(v.begin(), v.end(), comp);
update(cnt, mp[v[n-1].F.S], 1);
int ans[n] = {0};
for (int i = n-2; i >= 0; i--) {
ans[v[i].S] += query(mp[v[i].F.S]);
update(cnt, mp[v[i].F.S], 1);
}
for (int i = 0; i < n; i++)
cout<<ans[i]<<' ';
memset(ans, 0, sizeof ans);
memset(T, 0, sizeof T);
update(cnt, 1, 1);
update(cnt, mp[v[0].F.S] + 1, -1);
for (int i = 1; i < n; i++) {
ans[v[i].S] += query(mp[v[i].F.S]);
update(cnt, 1, 1);
update(cnt, mp[v[i].F.S] + 1, -1);
}
cout<<endl;
for (int i = 0; i < n; i++)
cout<<ans[i]<<' ';
}