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
#include <cstdio>
#include <algorithm>
#include <vector>
#include <queue>

#define scanf(...) scanf(__VA_ARGS__)?:0

using namespace std;

const int inf = 1e9;

typedef long long ll;

int n, a[200005], d[200005];

inline bool sas(int u, int v) {
	return (u < v) != (a[u] < a[v]);
}

int main() {
	scanf("%d", &n);
	for (int i = 1; i <= n; i++) {
		scanf("%d", &a[i]);
	}
	
	int mx = 0, st = 0;
	vector<pair<int, int>> przedzialy;
	for (int i = 1; i <= n; i++) {
		if (i > mx) {
			st = i;
			mx = a[i];
		}
		mx = max(mx, a[i]);
		if (i == mx) {
			przedzialy.emplace_back(st, i);
			st = i+1;
		}
	}

	for (auto &p: przedzialy) {
		for (int i = p.first; i <= p.second; i++) {
			fill(d + p.first, d + p.second + 1, inf);
			d[i] = 0;
			queue<int> q;
			q.push(i);
			int wynik = 0;
			while (!q.empty()) {
				int x = q.front(); q.pop();
				for (int j = p.first; j <= p.second; j++) if (sas(x,j) && d[j] == inf) {
					d[j] = d[x] + 1;
					wynik += d[j];
					q.push(j);
				}
			}
			printf("%d ", wynik);
		}
	}
	puts("");
}