-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_1971_validPath.cc
158 lines (145 loc) · 2.87 KB
/
Problem_1971_validPath.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#include <iostream>
#include <iterator>
#include <numeric>
#include <queue>
#include <unordered_map>
#include <vector>
#include "UnitTest.h"
using namespace std;
class Solution
{
public:
bool validPath(int n, vector<vector<int>> &edges, int source, int destination)
{
unordered_map<int, vector<int>> g;
for (auto &e : edges)
{
g[e[0]].push_back(e[1]);
g[e[1]].push_back(e[0]);
}
bool p1 = bfs(n, g, source, destination);
vector<bool> seen(n);
bool p2 = dfs(g, seen, source, destination);
bool p3 = uf(n, edges, source, destination);
return p1 | p2 | p3;
}
bool dfs(unordered_map<int, vector<int>> &g, vector<bool> &seen, int cur, int dest)
{
if (seen[cur])
{
return false;
}
if (cur == dest)
{
return true;
}
seen[cur] = true;
for (auto &next : g[cur])
{
if (dfs(g,seen, next,dest))
{
return true;
}
}
return false;
}
bool bfs(int n, unordered_map<int, vector<int>> &g, int source, int destination)
{
queue<int> q;
vector<bool> seen(n);
q.push(source);
while (!q.empty())
{
int cur = q.front();
q.pop();
seen[cur] = true;
if (cur == destination)
{
return true;
}
for (auto next : g[cur])
{
if (!seen[next])
{
q.push(next);
}
}
}
return false;
}
class UnionFind
{
public:
vector<int> parents;
vector<int> help;
vector<int> size;
int number;
public:
UnionFind(int n)
{
parents = vector<int>(n);
std::iota(parents.begin(), parents.end(), 0);
help = vector<int>(n);
size = vector<int>(n, 1);
number = n;
}
int find(int i)
{
int hi = 0;
while (i != parents[i])
{
help[hi++] = i;
i = parents[i];
}
for (hi--; hi >= 0; hi--)
{
parents[help[hi]] = i;
}
return i;
}
void unions(int i, int j)
{
int f1 = find(i);
int f2 = find(j);
if (f1 != f2)
{
if (size[f1] > size[f2])
{
size[f1] += size[f2];
parents[f2] = f1;
}
else
{
size[f2] += size[f1];
parents[f1] = f2;
}
number--;
}
}
int num() { return number; }
};
// 并查集最优解
bool uf(int n, vector<vector<int>> &edges, int source, int destination)
{
UnionFind uf(n);
for (auto &e : edges)
{
uf.unions(e[0], e[1]);
}
return uf.find(source) == uf.find(destination);
}
};
void testValidPath()
{
Solution s;
vector<vector<int>> e1 = {{0, 1}, {1, 2}, {2, 0}};
vector<vector<int>> e2 = {{0, 1}, {0, 2}, {3, 5}, {5, 4}, {4, 3}};
EXPECT_TRUE(s.validPath(3, e1, 0, 2));
EXPECT_FALSE(s.validPath(6, e2, 0, 5));
EXPECT_SUMMARY;
}
int main()
{
testValidPath();
return 0;
}