#include <bits/stdc++.h>
#define all(i) (i).begin(), (i).end()
using namespace std;
template<typename T1>
void Debug(bool _split, T1 i) {
if (_split)
cerr << ", ";
cerr << i;
}
template<typename T1, typename ...T2>
void Debug(bool _split, T1 i, T2 ...j) {
if (_split)
cerr << ", ";
cerr << i;
Debug(true, j...);
}
#define debug(args...) cout << "Line" << __LINE__ << " : [" << #args << "] is [", Debug(false, args), cerr << "]" << endl;
typedef pair<int, int> pi;
typedef long long ll;
const int inf = 0x3f3f3f3f, lg = 20;
const ll mod = 1e9 + 7, INF = 0x3f3f3f3f;
vector<vector<int>> g;
vector<int> pa, c, at, cnt, ans;
vector<pair<pi, pi>> mx;
vector<pi> vv;
int now;
pi dfs1(int i, int p) {
pa[i] = p;
pi res(0, i);
for (int j : g[i])
if (j != p) {
pi tmp = dfs1(j, i);
++tmp.first;
res = max(res, tmp);
}
return res;
}
int dfs2(int i, int p, int _v) {
mx[i].first = mx[i].second = pi(0, i);
for (int j : g[i])
if (j != p) {
pi tmp(dfs2(j, i, _v - 1) + 1, j);
if (tmp.first > mx[i].first.first)
mx[i].second = mx[i].first, mx[i].first = tmp;
else if (tmp.first > mx[i].second.first)
mx[i].second = tmp;
}
return mx[i].first.first;
}
void dfs3(int i, int p, int _v) {
if (at[_v] == -2)
at[_v] = c[i];
else
at[_v] = -1;
for (int j : g[i])
if (j != p)
dfs3(j, i, _v + 1);
}
void add(int x, int y) {
vv.emplace_back(x, y);
if (vv.size() > 2e5)
exit(0);
if (!cnt[y])
++now;
++cnt[y];
}
void del() {
int y = vv.back().second;
vv.pop_back();
--cnt[y];
if (!cnt[y])
--now;
}
void dfs4(int i, int p, int _v) {
int tmp;
if (mx[i].first.first > 0)
tmp = _v + mx[i].first.first;
else
tmp = _v;
vector<pi> stk;
while (vv.back().first <= tmp)
stk.push_back(vv.back()), del();
ans[i] = now;
add(_v, c[i]);
for (int j : g[i])
if (j != p && j != mx[i].first.second)
dfs4(j, i, _v - 1);
del();
if (mx[i].first.second != i) {
if (mx[i].second.first > 0)
tmp = _v + mx[i].second.first;
else
tmp = _v;
while (!stk.empty() && stk.back().first > tmp)
add(stk.back().first, stk.back().second), stk.pop_back();
add(_v, c[i]);
dfs4(mx[i].first.second, i, _v - 1);
del();
}
while (!stk.empty())
add(stk.back().first, stk.back().second), stk.pop_back();
}
signed main() {
ios::sync_with_stdio(0), cin.tie(0);
int n, _;
cin >> n >> _;
g.resize(n);
pa.resize(n);
at.resize(n);
mx.resize(n);
ans.resize(n, -1);
for (int i = 0; i < n - 1; ++i) {
int x, y;
cin >> x >> y;
--x, --y;
g[x].push_back(y), g[y].push_back(x);
}
c.resize(n);
for (int &i : c)
cin >> i, --i;
int x = dfs1(0, -1).second;
int y = dfs1(x, -1).second;
vector<int> dm;
for (int i = y; ~i; i = pa[i])
dm.push_back(i);
x = dm.size() - 1 >> 1;//2k -> k-1, 2k+1 -> k
dfs2(dm[x], dm[x + 1], 0);
at.assign(n, -2);
dfs3(dm[x + 1], dm[x], 1);
cnt.assign(n, 0);
now = 0;
vv.emplace_back(inf, -1);
for (int i = n - 1; i; --i)
if (at[i] >= 0) {
add(i, at[i]);
}
dfs4(dm[x], dm[x + 1], 0);
x = dm.size() >> 1;//2k -> k, 2k+1 -> k
dfs2(dm[x], dm[x - 1], 0);
at.assign(n, -2);
dfs3(dm[x - 1], dm[x], 1);
cnt.assign(n, 0);
now = 0;
vv.clear();
vv.emplace_back(inf, -1);
for (int i = n - 1; i; --i)
if (at[i] >= 0) {
add(i, at[i]);
}
dfs4(dm[x], dm[x - 1], 0);
for (int i : ans)
cout << i << '\n';
}
Compilation message
joi2019_ho_t5.cpp: In function 'int main()':
joi2019_ho_t5.cpp:150:19: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
150 | x = dm.size() - 1 >> 1;//2k -> k-1, 2k+1 -> k
| ~~~~~~~~~~^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
2 ms |
460 KB |
Output is correct |
3 |
Correct |
6 ms |
1600 KB |
Output is correct |
4 |
Correct |
6 ms |
1100 KB |
Output is correct |
5 |
Correct |
2 ms |
460 KB |
Output is correct |
6 |
Correct |
21 ms |
5836 KB |
Output is correct |
7 |
Correct |
6 ms |
1228 KB |
Output is correct |
8 |
Correct |
2 ms |
460 KB |
Output is correct |
9 |
Correct |
2 ms |
460 KB |
Output is correct |
10 |
Correct |
2 ms |
460 KB |
Output is correct |
11 |
Correct |
2 ms |
476 KB |
Output is correct |
12 |
Correct |
3 ms |
460 KB |
Output is correct |
13 |
Correct |
19 ms |
5328 KB |
Output is correct |
14 |
Correct |
4 ms |
844 KB |
Output is correct |
15 |
Correct |
5 ms |
716 KB |
Output is correct |
16 |
Correct |
2 ms |
460 KB |
Output is correct |
17 |
Correct |
10 ms |
3224 KB |
Output is correct |
18 |
Correct |
6 ms |
1228 KB |
Output is correct |
19 |
Correct |
3 ms |
460 KB |
Output is correct |
20 |
Correct |
25 ms |
5920 KB |
Output is correct |
21 |
Correct |
7 ms |
1220 KB |
Output is correct |
22 |
Correct |
2 ms |
460 KB |
Output is correct |
23 |
Correct |
2 ms |
460 KB |
Output is correct |
24 |
Correct |
2 ms |
460 KB |
Output is correct |
25 |
Correct |
3 ms |
460 KB |
Output is correct |
26 |
Correct |
2 ms |
460 KB |
Output is correct |
27 |
Correct |
13 ms |
2808 KB |
Output is correct |
28 |
Correct |
9 ms |
2380 KB |
Output is correct |
29 |
Correct |
4 ms |
972 KB |
Output is correct |
30 |
Correct |
2 ms |
452 KB |
Output is correct |
31 |
Correct |
12 ms |
3228 KB |
Output is correct |
32 |
Correct |
7 ms |
1252 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
147 ms |
11808 KB |
Output is correct |
2 |
Runtime error |
728 ms |
274436 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
204 ms |
15812 KB |
Output is correct |
2 |
Runtime error |
1027 ms |
274436 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
2 ms |
460 KB |
Output is correct |
3 |
Correct |
6 ms |
1600 KB |
Output is correct |
4 |
Correct |
6 ms |
1100 KB |
Output is correct |
5 |
Correct |
2 ms |
460 KB |
Output is correct |
6 |
Correct |
21 ms |
5836 KB |
Output is correct |
7 |
Correct |
6 ms |
1228 KB |
Output is correct |
8 |
Correct |
2 ms |
460 KB |
Output is correct |
9 |
Correct |
2 ms |
460 KB |
Output is correct |
10 |
Correct |
2 ms |
460 KB |
Output is correct |
11 |
Correct |
2 ms |
476 KB |
Output is correct |
12 |
Correct |
3 ms |
460 KB |
Output is correct |
13 |
Correct |
19 ms |
5328 KB |
Output is correct |
14 |
Correct |
4 ms |
844 KB |
Output is correct |
15 |
Correct |
5 ms |
716 KB |
Output is correct |
16 |
Correct |
2 ms |
460 KB |
Output is correct |
17 |
Correct |
10 ms |
3224 KB |
Output is correct |
18 |
Correct |
6 ms |
1228 KB |
Output is correct |
19 |
Correct |
3 ms |
460 KB |
Output is correct |
20 |
Correct |
25 ms |
5920 KB |
Output is correct |
21 |
Correct |
7 ms |
1220 KB |
Output is correct |
22 |
Correct |
2 ms |
460 KB |
Output is correct |
23 |
Correct |
2 ms |
460 KB |
Output is correct |
24 |
Correct |
2 ms |
460 KB |
Output is correct |
25 |
Correct |
3 ms |
460 KB |
Output is correct |
26 |
Correct |
2 ms |
460 KB |
Output is correct |
27 |
Correct |
13 ms |
2808 KB |
Output is correct |
28 |
Correct |
9 ms |
2380 KB |
Output is correct |
29 |
Correct |
4 ms |
972 KB |
Output is correct |
30 |
Correct |
2 ms |
452 KB |
Output is correct |
31 |
Correct |
12 ms |
3228 KB |
Output is correct |
32 |
Correct |
7 ms |
1252 KB |
Output is correct |
33 |
Correct |
147 ms |
11808 KB |
Output is correct |
34 |
Runtime error |
728 ms |
274436 KB |
Execution killed with signal 9 |
35 |
Halted |
0 ms |
0 KB |
- |