-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathPossible_Bipartition.cpp
47 lines (44 loc) · 1.37 KB
/
Possible_Bipartition.cpp
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
class Solution {
enum Color {
NONE, WHITE, BLACK
};
bool isBipartite(int node, vector<vector<int>>& graph, vector<int>& color) {
for(int i = 0; i < (int)graph[node].size(); i++) {
int neigh = graph[node][i];
if(color[neigh] == color[node]) {
return false;
}
if(color[neigh] != NONE) {
continue;
}
color[neigh] = color[node] == WHITE ? BLACK : WHITE;
if(!isBipartite(neigh, graph, color)) {
return false;
}
}
return true;
}
bool isBipartite(int N, vector<vector<int>>& graph) {
vector<int> color(N + 1, NONE);
for(int i = 1; i <= N; i++) {
if (color[i] == NONE) {
color[i] = WHITE;
if(!isBipartite(i, graph, color)) {
return false;
}
}
}
return true;
}
public:
bool possibleBipartition(int N, vector<vector<int>>& dislikes) {
vector<vector<int>> graph(N + 1);
for (int i = 0; i < (int)dislikes.size(); i++) {
int person1 = dislikes[i][0];
int person2 = dislikes[i][1];
graph[person1].push_back(person2);
graph[person2].push_back(person1);
}
return isBipartite(N, graph);
}
};