DFS, 오일러
1. 문제 해결 아이디어
이 문제는 오일러 서킷을 구하는 문제이다.
위 링크의 알고리즘에 따라서 구현을 하고,
간선정보를 받은 후 정점에 대한 degree가 홀수인 정점이 존재한다면 오일러 서킷을 만들 수 없기 때문에 -1을 출력하면 된다.
2. 코드 - 07/27 : 틀린 코드네요 ㅈㅅ 합니다 왜 갑자기 틀렸지 다시 풀어봐야지
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
|
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> Eucircuit;
int N, adj[1001][1001], degree[1001];
bool visited[1001];
void findEuler(int now){
visited[now] = true;
for(int i = 1; i <= N; i++){
if(!adj[now][i]) continue;
while(adj[now][i] > 0){
adj[now][i]--;
adj[i][now]--;
findEuler(i);
}
}
Eucircuit.push_back(now);
}
bool input(){
cin >> N;
for(int i = 1; i <= N; i++){
for(int j = 1; j <= N; j++){
cin >> adj[i][j];
degree[i] += adj[i][j];
}
if(degree[i] % 2) return false;
}
return true;
}
int main(){
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
if(!input()){
cout << -1;
return 0;
}
findEuler(1);
reverse(Eucircuit.begin(), Eucircuit.end());
for(auto &w : Eucircuit){
cout << w << " ";
}
return 0;
}
|
cs |
'Algorithm > BOJ' 카테고리의 다른 글
[백준 16197] 두 동전 C++ (0) | 2021.06.26 |
---|---|
[백준 20181] 꿈틀꿈틀 호석 애벌레 - 효율성 C++ (2) | 2021.06.23 |
[백준 2162] 선분 그룹 C++ (0) | 2021.06.20 |
[백준 1405] 미친 로봇 C++ (0) | 2021.06.15 |
[백준 6543] 그래프의 싱크 C++ (2) | 2021.06.14 |