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 <bits/stdc++.h>
using namespace std;
typedef long long LL;

int n;
int t[200009];
vector<int> v[200009];
bool odw[200009];

int bfs(int s){
	queue<pair<int, int> > q;
	q.push({s, 0});
	odw[s]=true;
	int res=0;
	while(!q.empty()){
		auto xx = q.front();
		int x = xx.first;
		res += xx.second;
		q.pop();
		for(int a : v[x]){
			if(odw[a]==false){
				odw[a]=true;
				q.push({a, xx.second+1});
			}
		}
	}
	for(int i=0; i<=n; i++)odw[i]=false;
	return res;
}

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	cin>>n;
	for(int i=1; i<=n; i++){
		cin>>t[i];
	}
	for(int i=1; i<n; i++){
		for(int j=i+1; j<=n; j++){
			if(t[i] > t[j]){
				v[i].push_back(j);
				v[j].push_back(i);
			}
		}
	}
	for(int i=1; i<=n; i++){
		cout<<bfs(i)<<" ";
	}
	cout<<"\n";
	return 0;
}