PAT甲级(Advanced Level) Practice 1021 Deepest Root

打印 上一主题 下一主题

主题 1002|帖子 1002|积分 3006

原题

1021 Deepest Root - PAT (Advanced Level) Practice
标题大意

给定一个连通且无环的图(即树),树的高度取决于根节点的选择。请找出能使树的高度最大的全部根节点(称为“最深根”)。若给定的图不是树(即不连通),需输出连通分量的数目。
解题思绪

先找连通分量的数目,利用bfs遍历全部点,标记已经遍历的点,调用函数bfs的次数就是连通分量的个数。
若为树,利用两次bfs和无序聚集unordered_set来生存使树深度最大的点,只用一次bfs有可能遇到如图环境:假设我们从G点开始遍历,M点就不会进入答案,因此我们先遍历一次,找到最远的为B,再从B开始遍历,找到M。

代码(c++)

  1. #include <bits/stdc++.h>
  2. #include <algorithm>
  3. #include <vector>
  4. #include <queue>
  5. #include <unordered_set>
  6. using namespace std;
  7. const int N = 10010;
  8. int n;
  9. vector<vector<int>> graph(N);          // 模拟邻接表
  10. vector<bool> visited(N, false);
  11. vector<int> bfs(int start, const vector<vector<int>>& graph, int n) {
  12.     vector<int> depth(n + 1, -1);      // 记录每个点的深度
  13.     queue<int> q;
  14.     q.push(start);
  15.     depth[start] = 0;
  16.     int max_depth = 0;                 // 动态记录最深的深度
  17.    
  18.     while (!q.empty()) {
  19.         int u = q.front();
  20.         q.pop();
  21.         for (int v : graph[u]) {
  22.             if (depth[v] == -1) {
  23.                 depth[v] = depth[u] + 1;
  24.                 max_depth = max(max_depth, depth[v]);
  25.                 q.push(v);
  26.             }
  27.         }
  28.     }
  29.    
  30.     vector<int> res;
  31.     for (int i = 1; i <= n; ++i) {
  32.         if (depth[i] == max_depth) {
  33.             res.push_back(i);
  34.         }
  35.     }
  36.     return res;
  37. }
  38. int main() {
  39.     cin >> n;
  40.     for(int i = 0; i < n - 1; i++) {
  41.         int u, v;
  42.         cin >> u >> v;
  43.         graph[u].push_back(v);
  44.         graph[v].push_back(u);
  45.     }
  46.     int components = 0;
  47.     for (int i = 1; i <= n; ++i) {
  48.         if (!visited[i]) {
  49.             components++;
  50.             queue<int> q;
  51.             q.push(i);
  52.             visited[i] = true;
  53.             while (!q.empty()) {
  54.                 int u = q.front();
  55.                 q.pop();
  56.                 for (int v : graph[u]) {
  57.                     if (!visited[v]) {
  58.                         visited[v] = true;
  59.                         q.push(v);
  60.                     }
  61.                 }
  62.             }
  63.         }
  64.     }
  65.     if(components == 1) {
  66.         // 两次遍历找到所有最深的点
  67.         vector<int> Y = bfs(1, graph, n);               
  68.         vector<int> Z = bfs(Y[0], graph, n);
  69.    
  70.         unordered_set<int> deepest;
  71.         for (int y : Y) deepest.insert(y);
  72.         for (int z : Z) deepest.insert(z);
  73.         vector<int> ans(deepest.begin(), deepest.end());
  74.         sort(ans.begin(), ans.end());
  75.    
  76.         for (int node : ans) {
  77.             cout << node << endl;
  78.         }
  79.     }
  80.     else cout << "Error: "<< components << " components";
  81. }
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

反转基因福娃

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表