-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2517_2.cpp
51 lines (40 loc) · 1.08 KB
/
2517_2.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
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
typedef pair<int,int> pii;
int seg[1048577], x, n;
pii arr[500001];
int update(int pos, int node, int x, int y) {
if (pos < x || y < pos)return seg[node];
if (x == y) return seg[node]++;
int mid = (x + y) >> 1;
return seg[node] = update(pos, node * 2, x, mid) + update(pos, node * 2 + 1, mid + 1, y);
}
int query(int lo, int hi, int node, int x, int y) {
if (y < lo || hi < x)
return 0;
if (lo <= x&&y <= hi)
return seg[node];
int mid = (x + y) >> 1;
return query(lo, hi, node * 2, x, mid) + query(lo, hi, node * 2 + 1, mid + 1, y);
}
bool cmp(pii a, pii b){
return a.second < b.second;
}
int main() {
cin >> n;
for(int i = 1; i <= n; i++) {
cin >> arr[i].first;
arr[i].second = i;
}
sort(arr+1, arr+(n+1));
for(int i = 1; i <= n; i++)
arr[i].first = i;
sort(arr+1, arr+(n+1), cmp);
for (int i = 1; i <= n; i++) {
cout << 1 + query(arr[i].first+1, n, 1, 1, n) << "\n";
update(arr[i].first, 1, 1, n);
}
return 0;
}