-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13023 ABCDE.cpp
65 lines (46 loc) · 1.3 KB
/
13023 ABCDE.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <iostream>
#include <vector>
int N, M; // N: 사람의 수, M: 친구 관계의 수
std::vector<std::vector<int>> v; // v[i][j]: i 번 사람과 j 번째 사람 친구
bool answer = false; // answer: 문제의 조건이 맞으면 1 아니면 0
void Dfs(int k, int curr, std::vector<bool>& visited){
if(k==4){ // 4번 친구라면
answer = true; // 문제의 조건을 만족
return;
}
for(int j=0; j<v[curr].size(); ++j){
int next = v[curr][j]; // next: 다음 친구
if(visited[next]) continue; // 이미 친구라면 continue
visited[next] = true;
Dfs(k+1, next, visited);
visited[next] = false;
}
}
void Solution(){
for(int i=0; i<N; ++i){
std::vector<bool> visited;
visited.assign(N, false);
visited[i] = true;
Dfs(0, i, visited);
if(answer) break;
}
return;
}
void Input(){
std::cin >> N >> M;
v.assign(N, std::vector<int>(0, 0));
for(int i=0; i<M; ++i){
int a, b; // a, b: a와 b는 친구
std::cin >> a >> b;
v[a].push_back(b);
v[b].push_back(a); // 양방향
}
return;
}
int main(){
Input();
Solution();
if(answer) {std::cout << 1;}
else {std::cout << 0;}
return 0;
}