当前位置:   article > 正文

LeetCode 685 Redundant Connection II (并查集 判树)_leetcode 685 java

leetcode 685 java

In this problem, a rooted tree is a directed graph such that, there is exactly one node (the root) for which all other nodes are descendants of this node, plus every node has exactly one parent, except for the root node which has no parents.

The given input is a directed graph that started as a rooted tree with N nodes (with distinct values 1, 2, ..., N), with one additional directed edge added. The added edge has two different vertices chosen from 1 to N, and was not an edge that already existed.

The resulting graph is given as a 2D-array of edges. Each element of edges is a pair [u, v] that represents a directed edge connecting nodes u and v, where u is a parent of child v.

Return an edge that can be removed so that the resulting graph is a rooted tree of N nodes. If there are multiple answers, return the answer that occurs last in the given 2D-array.

Example 1:

  1. Input: [[1,2], [1,3], [2,3]]
  2. Output: [2,3]
  3. Explanation: The given directed graph will be like this:
  4. 1
  5. / \
  6. v v
  7. 2-->3

Example 2:

  1. Input: [[1,2], [2,3], [3,4], [4,1], [1,5]]
  2. Output: [4,1]
  3. Explanation: The given directed graph will be like this:
  4. 5 <- 1 -> 2
  5. ^ |
  6. | v
  7. 4 <- 3

Note:

  • The size of the input 2D-array will be between 3 and 1000.
  • Every integer represented in the 2D-array will be between 1 and N, where N is the size of the input array.

题目链接:https://leetcode.com/problems/redundant-connection-ii/

题目分析:简单题,题目有说输入是一棵合法的有根树添了一条边,故比直接给一个有向图判树要简便一些,分两种情况

1)存在入度为0的点:容易得到要删的必然是一个入度为2的点的某条入边,且删除后要保证连通,连通性可用并查集

2)不存在入度为0的点:这种情况更简单,根必然是一个入度为1的点,且只要这个点出度不为0,必然可以做为树根

1ms,时间击败99.48%

  1. class Solution {
  2. public int[] fa;
  3. public int find(int x) {
  4. if (x == fa[x]) {
  5. return x;
  6. }
  7. fa[x] = find(fa[x]);
  8. return fa[x];
  9. }
  10. public void union(int x, int y) {
  11. int r1 = find(x);
  12. int r2 = find(y);
  13. if (r1 != r2) {
  14. fa[r2] = r1;
  15. }
  16. }
  17. public boolean isConnect(int pos, int n, int[][] edges) {
  18. fa = new int[n + 1];
  19. for (int i = 1; i <= n; i++) {
  20. fa[i] = i;
  21. }
  22. for (int i = 0; i < n; i++) {
  23. if (pos == i) {
  24. continue;
  25. }
  26. union(edges[i][0], edges[i][1]);
  27. }
  28. int rt = find(1);
  29. for (int i = 2; i <= n; i++) {
  30. if (find(i) != rt) {
  31. return false;
  32. }
  33. }
  34. return true;
  35. }
  36. public int[] findRedundantDirectedConnection(int[][] edges) {
  37. int n = edges.length;
  38. int[] inDegree = new int[n + 1];
  39. int[] outDegree = new int[n + 1];
  40. for (int i = 0; i < n; i++) {
  41. inDegree[edges[i][1]]++;
  42. outDegree[edges[i][0]]++;
  43. }
  44. int rt = -1;
  45. for (int i = 1; i <= n; i++) {
  46. if (inDegree[i] == 0) {
  47. rt = i;
  48. break;
  49. }
  50. }
  51. if (rt != -1) {
  52. for (int i = n - 1; i >= 0; i--) {
  53. if (inDegree[edges[i][1]] == 2 && isConnect(i, n, edges)) {
  54. return edges[i];
  55. }
  56. }
  57. } else {
  58. for (int i = n - 1; i >= 0; i--) {
  59. if (inDegree[edges[i][1]] == 1 && outDegree[edges[i][1]] > 0) {
  60. return edges[i];
  61. }
  62. }
  63. }
  64. return new int[2];
  65. }
  66. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/656093
推荐阅读
相关标签
  

闽ICP备14008679号