#pragma GCC optimize ("Ofast")
// #pragma GCC target ("avx2")
#include <bits/stdc++.h>
#define X first
#define Y second
#define ll long long
#define MP make_pair
using namespace std;
const int N = 10001, M = 100;
const ll mod = 1e9 + 7;
int n, cl[N];
vector<int> g[N], q[N];
vector< pair<int, int> > ans[N];
bitset<M> dp[M];
void dfs(int v) {
for(int to: g[v])
dfs(to);
for(int i = M - 1;i >= 0;i--)
q[i].clear();
for(int to: g[v]) {
for(pair<int, int> &nx: ans[to])
q[nx.X].push_back(nx.Y);
}
q[cl[v]].push_back(cl[v]);
for(int i = M - 1;i >= 0;i--) {
dp[i].reset();
for(int j: q[i]) {
if(j + 1 < M)
dp[i] |= dp[j + 1];
dp[i][j] = 1;
}
if(i > cl[v]) continue;
for(int j = cl[v];j < M;j++) {
if(dp[i][j]) ans[v].push_back(MP(i, j));
}
}
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> n;
for(int i = 1;i <= n;i++)
cin >> cl[i], cl[i]--;
for(int i = 1, x, y;i < n;i++) {
cin >> x >> y;
g[x].push_back(y);
}
dfs(1);
cout << ans[1].size();
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
972 KB |
Output is correct |
2 |
Correct |
1 ms |
1024 KB |
Output is correct |
3 |
Incorrect |
1 ms |
972 KB |
Output isn't correct |
4 |
Incorrect |
1 ms |
972 KB |
Output isn't correct |
5 |
Incorrect |
1 ms |
972 KB |
Output isn't correct |
6 |
Correct |
1 ms |
972 KB |
Output is correct |
7 |
Correct |
1 ms |
972 KB |
Output is correct |
8 |
Correct |
1 ms |
972 KB |
Output is correct |
9 |
Correct |
1 ms |
972 KB |
Output is correct |
10 |
Correct |
1 ms |
972 KB |
Output is correct |
11 |
Incorrect |
15 ms |
1464 KB |
Output isn't correct |
12 |
Incorrect |
13 ms |
1504 KB |
Output isn't correct |
13 |
Correct |
18 ms |
1560 KB |
Output is correct |
14 |
Incorrect |
40 ms |
8088 KB |
Output isn't correct |
15 |
Incorrect |
41 ms |
8088 KB |
Output isn't correct |
16 |
Incorrect |
40 ms |
8004 KB |
Output isn't correct |
17 |
Correct |
11 ms |
1484 KB |
Output is correct |
18 |
Correct |
12 ms |
1544 KB |
Output is correct |
19 |
Incorrect |
30 ms |
3928 KB |
Output isn't correct |
20 |
Incorrect |
31 ms |
3828 KB |
Output isn't correct |