比赛 CSP2023-J模拟赛 评测结果 RRRRRRRRRR
题目名称 新建题目 最终得分 0
用户昵称 黄思博 运行时间 0.005 s
代码语言 C++ 内存使用 5.95 MiB
提交时间 2023-10-18 20:31:15
显示代码纯文本
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. const int N = 2005;
  6. struct tree{
  7. int w, dep;
  8. vector<int> son;
  9. }t[N];
  10. int n, root, tot, ans = 0;
  11.  
  12. void dfs(int k) {
  13. for(int i = 0; i < t[k].son.size(); i ++) {
  14. t[t[k].son[i]].dep = t[k].dep + 1;
  15. ans ++;
  16. dfs(t[k].son[i]);
  17. if(!(t[k].dep > t[t[k].son[i]].dep && t[k].w > t[t[k].son[i]].dep)) {
  18. ans --;
  19. }
  20. }
  21. }
  22.  
  23. int main() {
  24. //freopen("touch.in", "r", stdin);
  25. //freopen("touch.out", "w", stdout);
  26. ios::sync_with_stdio(0);
  27. cin.tie(0);
  28. cout.tie(0);
  29. cin >> n;
  30. root = 1, tot = n;
  31. for(int i = 1; i <= n; i ++)
  32. cin >> t[i].w;
  33. for(int i = 1; i <= n - 1; i ++) {
  34. int x, y;
  35. cin >> x >> y;
  36. if(x > y)
  37. t[x].son.push_back(y);
  38. else
  39. t[y].son.push_back(x);
  40. }
  41. dfs(root);
  42. cout << ans << endl;
  43. return 0;
  44. }
  45.