백준 1707번: 이분 그래프 / C++
2023. 3. 16. 23:31ㆍ개인공부/코딩테스트
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
|
#include <iostream>
#include <vector>
#include <set>
#include <queue>
using namespace std;
struct Vec
{
int X1;
int X2;
Vec(int x1, int x2)
:X1(x1)
,X2(x2)
{}
};
enum COLOR
{
NONE,
BLACK,
RED,
};
queue<Vec> Q;
vector<set<int>*> vec;
bool IsTree = true;
int Visited[20001]{}; // 0 방문 x 1 BLACK 2 RED
void BFS()
{
queue<Vec> tmp;
while (!Q.empty())
{
Vec v = Q.front();
bool check = false;
if (Visited[v.X1] == 0 && Visited[v.X2] == 0) // 첫방문
{
Visited[v.X1] = 1; // 블랙
Visited[v.X2] = 2; // 레드
check = true;
}
else if (Visited[v.X1] == 0)
{
if (Visited[v.X2] == 1)
Visited[v.X1] = 2;
else
Visited[v.X1] = 1;
}
else if (Visited[v.X1] == 1) // 블랙
{
if (Visited[v.X2] == 1) //이분 x
{
queue<Vec> Clear;
Q = Clear;
IsTree = false;
return;
}
else if (Visited[v.X2] == 0)
{
Visited[v.X2] = 2;
check = true;
}
}
else // 레드
{
if (Visited[v.X2] == 2) //이분 x
{
queue<Vec> Clear;
Q = Clear;
IsTree = false;
return;
}
else if (Visited[v.X2] == 0)
{
Visited[v.X2] = 1;
check = true;
}
}
if (check == true)
{
for (auto iter = vec[v.X2]->begin(); iter != vec[v.X2]->end(); ++iter)
{
Q.push(Vec(v.X2, *iter));
}
}
Q.pop();
}
Q = tmp;
}
int main(void)
{
cin.tie(NULL);
cout.tie(NULL);
ios::sync_with_stdio(false);
int TestCase;
cin >> TestCase;
for (int i = 0; i < TestCase; ++i)
{
if (i != 0)
{
for (int i = 0; i <= 20000; ++i)
Visited[i] = 0;
}
IsTree = true;
int V, E; // V 정점 E 간선
cin >> V >> E;
vec.clear();
for (int j = 0; j <= V; ++j)
{
set<int>* s =new set<int>;
vec.push_back(s);
}
for (int j = 0; j < E; ++j)
{
int num1, num2;
cin >> num1 >> num2;
vec[num1]->insert(num2);
vec[num2]->insert(num1);
}
for (int j = 0; j < vec.size(); ++j)
{
if (IsTree == false)
break;
if (vec[j] != 0)
{
set<int>* sPtr = vec[j];
for (auto iter = sPtr->begin(); iter != sPtr->end(); ++iter)
{
Q.push(Vec(j, *iter));
}
while (!Q.empty())
{
BFS();
}
}
}
if (IsTree == true)
cout << "YES\n";
else
cout << "NO\n";
}
}
|
cs |
'개인공부 > 코딩테스트' 카테고리의 다른 글
백준 1504번 : 특정한 최단 경로 / C++ (0) | 2023.03.20 |
---|---|
백준 1753번 : 최단 경로 / C++ (0) | 2023.03.18 |
백준 2206번 : 벽 부수고 이동하기 / C++ (0) | 2023.03.16 |
백준 7575번 : 토마토 / C++ (0) | 2023.03.15 |
백준 2178번 : 미로 탐색 / C++ (0) | 2023.03.15 |