#include <bits/stdc++.h> using namespace std; int main(){ int n; scanf("%d", &n); vector<int> t(n+1); vector<long long> wynik(n+1); vector<vector<int>> g(n+1); vector<int> odl(n+1); for(int i = 1; i <= n; ++i) scanf("%d", &t[i]); for(int i = 1; i <= n; ++i){ for(int j = i - 1; j; --j) if(t[i] < t[j]) g[i].emplace_back(j); for(int j = i + 1; j <= n; ++j) if(t[j] < t[i]) g[i].emplace_back(j); } for(int i = 1; i <= n; ++i){ for(int j = 1; j <= n; ++j) odl[j] = 1e09; odl[i] = 0; queue<int> q; q.emplace(i); while(!q.empty()){ int x = q.front(); q.pop(); for(int u : g[x]) if(odl[u] == 1e09){ odl[u] = odl[x] + 1; q.emplace(u); } } for(int j = 1; j <= n; ++j) wynik[i] += odl[j] == 1e09 ? 0 : odl[j]; } for(int i = 1; i <= n; ++i) printf("%lld ", wynik[i]); return 0; }
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 | #include <bits/stdc++.h> using namespace std; int main(){ int n; scanf("%d", &n); vector<int> t(n+1); vector<long long> wynik(n+1); vector<vector<int>> g(n+1); vector<int> odl(n+1); for(int i = 1; i <= n; ++i) scanf("%d", &t[i]); for(int i = 1; i <= n; ++i){ for(int j = i - 1; j; --j) if(t[i] < t[j]) g[i].emplace_back(j); for(int j = i + 1; j <= n; ++j) if(t[j] < t[i]) g[i].emplace_back(j); } for(int i = 1; i <= n; ++i){ for(int j = 1; j <= n; ++j) odl[j] = 1e09; odl[i] = 0; queue<int> q; q.emplace(i); while(!q.empty()){ int x = q.front(); q.pop(); for(int u : g[x]) if(odl[u] == 1e09){ odl[u] = odl[x] + 1; q.emplace(u); } } for(int j = 1; j <= n; ++j) wynik[i] += odl[j] == 1e09 ? 0 : odl[j]; } for(int i = 1; i <= n; ++i) printf("%lld ", wynik[i]); return 0; } |