#include <bits/stdc++.h>
using namespace std;
#pragma GCC optimize("O3")
#define endl '\n'
#define db double
#define ll __int128
#define int long long
#define pb push_back
#define fs first
#define sd second
#define Mod long(1e9 + 7)
#define all(x) x.begin(), x.end()
#define unvisited long(-1)
#define Eps double(1e-9)
#define _for(i, n) for(int i = 0; i < (n); i++)
#define dbg(x) cout << #x ": " << x << endl;
const int Max = 1e6 + 7, Inf = 1e9 + 7;
void print(bool x) { cout << (x ? "YES" : "NO") << endl; }
string tostring (__int128 x)
{
string ans = "";
while(x > 0)
{
ans += (x % 10 + '0');
x /= 10;
}
reverse(all(ans));
return ans;
}
vector <vector<int>> v;
vector <int> in, out, s;
struct SegmentTree1
{
vector <int> tree; int l;
void update(int k, int x){
k += (l - 1)+1; tree[k] = x;
for(k /= 2; k > 0; k /= 2){
tree[k] = max(tree[2*k], tree[2*k+1]);
}
}
int query(int node, int x, int y, int s, int e){
if(s > y || e < x) return 0;
if(s >= x && e <= y){
return tree[node];
}
int mid = (s + e) / 2;
return max(query(node*2, x, y, s, mid),
query(node*2+1, x, y, mid+1, e));
}
int query(int x, int y){
return query(1, x+1, y+1, 1, l);
}
SegmentTree1 (int n)
{
for(l = 1; l < n; l *= 2);
tree.assign(2*l+7, 0);
}
};
struct SegmentTree2
{
vector <int> tree; int l;
void update(int k, int x){
k += (l - 1) + 1; tree[k] += x;
for(k /= 2; k > 0; k /= 2){
tree[k] = tree[2*k] + tree[2*k+1];
}
}
int query(int node, int x, int y, int s, int e){
if(s > y || e < x) return 0;
if(s >= x && e <= y){
return tree[node];
}
int mid = (s + e) / 2;
return query(node*2, x, y, s, mid) +
query(node*2+1, x, y, mid+1, e);
}
int query(int x, int y){
return query(1, x+1, y+1, 1, l);
}
SegmentTree2 (int n)
{
for(l = 1; l < n; l *= 2);
tree.assign(2*l+7, 0);
}
};
void dfs(int node)
{
in[node] = s.size();
s.push_back(node);
for(auto& u : v[node]){
dfs(u);
}
out[node] = s.size();
s.push_back(node);
}
vector <int> cmp(vector <int> c){
vector <pair<int, int>> t;
_for(i, c.size()) t.push_back({ c[i], i });
sort(all(t));
_for(i, c.size()) c[t[i].sd] = i+1;
return c;
}
void solve()
{
int n; cin >> n;
vector <int> c(n+1), d(n+1);
_for(i, n) cin >> c[i+1];
c = cmp(c);
vector <pair<int, int>> edge(n-1);
v.assign(n+1, vector <int> ());
for(auto& u : edge){
cin >> u.fs >> u.sd;
v[u.fs].pb(u.sd); //v[u.sd].pb(u.fs);
}
in.assign(2*n+7, 0);
out.assign(2*n+7, 0);
dfs(1);
vector <vector<int>> p(n+1, vector <int> (21, 0));
SegmentTree1 St1(2*n+7); SegmentTree2 St2(2*n+7);
_for(i, n-1)
{
vector <pair<int, int>> f;
int ans = 0, x = edge[i].fs;
while (x != 0)
{
f.push_back({ 1, c[x] });
x = p[x][0];
}
x = edge[i].fs;
while (x != 0)
{
c[x] = c[edge[i].sd];
x = p[x][0];
}
p[edge[i].sd][0] = edge[i].fs;
reverse(all(f));
for(int i = 0; i < f.size(); i++){
for(int j = i+1; j < f.size(); j++){
ans += (f[i].sd > f[j].sd);
}
}
cout << ans << endl;
}
}
int32_t main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int Q = 1; //cin >> Q;
while (Q--)
{
solve();
}
return 0;
}
Compilation message
construction.cpp: In function 'std::vector<long long int> cmp(std::vector<long long int>)':
construction.cpp:16:37: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
16 | #define _for(i, n) for(int i = 0; i < (n); i++)
| ^
construction.cpp:115:5: note: in expansion of macro '_for'
115 | _for(i, c.size()) t.push_back({ c[i], i });
| ^~~~
construction.cpp:16:37: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
16 | #define _for(i, n) for(int i = 0; i < (n); i++)
| ^
construction.cpp:117:5: note: in expansion of macro '_for'
117 | _for(i, c.size()) c[t[i].sd] = i+1;
| ^~~~
construction.cpp: In function 'void solve()':
construction.cpp:164:26: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
164 | for(int i = 0; i < f.size(); i++){
| ~~^~~~~~~~~~
construction.cpp:165:32: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
165 | for(int j = i+1; j < f.size(); j++){
| ~~^~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
344 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
1 ms |
604 KB |
Output is correct |
6 |
Correct |
1 ms |
604 KB |
Output is correct |
7 |
Correct |
0 ms |
604 KB |
Output is correct |
8 |
Correct |
25 ms |
600 KB |
Output is correct |
9 |
Correct |
14 ms |
684 KB |
Output is correct |
10 |
Correct |
25 ms |
688 KB |
Output is correct |
11 |
Correct |
4 ms |
604 KB |
Output is correct |
12 |
Correct |
4 ms |
604 KB |
Output is correct |
13 |
Correct |
4 ms |
656 KB |
Output is correct |
14 |
Correct |
4 ms |
604 KB |
Output is correct |
15 |
Correct |
0 ms |
604 KB |
Output is correct |
16 |
Correct |
0 ms |
604 KB |
Output is correct |
17 |
Correct |
1 ms |
600 KB |
Output is correct |
18 |
Correct |
0 ms |
604 KB |
Output is correct |
19 |
Correct |
6 ms |
660 KB |
Output is correct |
20 |
Correct |
5 ms |
604 KB |
Output is correct |
21 |
Correct |
4 ms |
604 KB |
Output is correct |
22 |
Incorrect |
0 ms |
604 KB |
Output isn't correct |
23 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
344 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
1 ms |
604 KB |
Output is correct |
6 |
Correct |
1 ms |
604 KB |
Output is correct |
7 |
Correct |
0 ms |
604 KB |
Output is correct |
8 |
Correct |
25 ms |
600 KB |
Output is correct |
9 |
Correct |
14 ms |
684 KB |
Output is correct |
10 |
Correct |
25 ms |
688 KB |
Output is correct |
11 |
Correct |
4 ms |
604 KB |
Output is correct |
12 |
Correct |
4 ms |
604 KB |
Output is correct |
13 |
Correct |
4 ms |
656 KB |
Output is correct |
14 |
Correct |
4 ms |
604 KB |
Output is correct |
15 |
Correct |
0 ms |
604 KB |
Output is correct |
16 |
Correct |
0 ms |
604 KB |
Output is correct |
17 |
Correct |
1 ms |
600 KB |
Output is correct |
18 |
Correct |
0 ms |
604 KB |
Output is correct |
19 |
Correct |
6 ms |
660 KB |
Output is correct |
20 |
Correct |
5 ms |
604 KB |
Output is correct |
21 |
Correct |
4 ms |
604 KB |
Output is correct |
22 |
Incorrect |
0 ms |
604 KB |
Output isn't correct |
23 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
344 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
1 ms |
604 KB |
Output is correct |
6 |
Correct |
1 ms |
604 KB |
Output is correct |
7 |
Correct |
0 ms |
604 KB |
Output is correct |
8 |
Correct |
25 ms |
600 KB |
Output is correct |
9 |
Correct |
14 ms |
684 KB |
Output is correct |
10 |
Correct |
25 ms |
688 KB |
Output is correct |
11 |
Correct |
4 ms |
604 KB |
Output is correct |
12 |
Correct |
4 ms |
604 KB |
Output is correct |
13 |
Correct |
4 ms |
656 KB |
Output is correct |
14 |
Correct |
4 ms |
604 KB |
Output is correct |
15 |
Correct |
0 ms |
604 KB |
Output is correct |
16 |
Correct |
0 ms |
604 KB |
Output is correct |
17 |
Correct |
1 ms |
600 KB |
Output is correct |
18 |
Correct |
0 ms |
604 KB |
Output is correct |
19 |
Correct |
6 ms |
660 KB |
Output is correct |
20 |
Correct |
5 ms |
604 KB |
Output is correct |
21 |
Correct |
4 ms |
604 KB |
Output is correct |
22 |
Incorrect |
0 ms |
604 KB |
Output isn't correct |
23 |
Halted |
0 ms |
0 KB |
- |