본문 바로가기

알고리즘/백준

백준 10971 - 외판원 순회 2 - dfs 를 이용한 순열 구현

728x90

https://www.acmicpc.net/problem/10971

 

10971번: 외판원 순회 2

첫째 줄에 도시의 수 N이 주어진다. (2 ≤ N ≤ 10) 다음 N개의 줄에는 비용 행렬이 주어진다. 각 행렬의 성분은 1,000,000 이하의 양의 정수이며, 갈 수 없는 경우는 0이 주어진다. W[i][j]는 도시 i에서 j로 가기 위한 비용을 나타낸다. 항상 순회할 수 있는 경우만 입력으로 주어진다.

www.acmicpc.net

10819 차이를 최대로 문제에서 순열을 dfs로 구현하는 것에서 아이디어를 따와 풀었다.

거기보다 이 문제에서 조금 더 주의해야 할 점은, 마을마다 방문한 노드는 다시 방문하면 안되는 것은 기본이고,

edge가 0인 경우에는 갈수 없다는 조건까지 검사해보아야 한다.

 

일단 이건 60%까지 갔다가 틀린 코드.

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
#include <iostream>
#include <vector>
using namespace std;
 
int map[11][11];
bool isvisited[11];
int N;
int result= 99999999;
vector<int> v;
 
void dfs(int travelcnt, int currentnode){
    if(travelcnt==N){
        int tmp=0;
        for(int i=0; i<N-1; i++){
            tmp+=map[v[i]][v[i+1]];
        }
        tmp +=map[v[N-1]][v[0]];
        result = min(result,tmp);
//        cout<<"result is "<<result<<"\n";
        return;
    }
    else{
 
        for(int j=0; j<N; j++){
            if(map[currentnode][j]==0)
                continue;
            else if(!isvisited[j]){
//                cout<<currentnode<<" -> "<<j<<"\n";
                isvisited[j]=true;
                v.push_back(j);
                dfs(travelcnt+1,j);
                isvisited[j]=false;
                v.pop_back();
            }
        }
    }
}
 
int main(void){
 
    cin>>N;
    for(int i=0; i<N; i++){
        for(int j=0; j<N; j++){
            cin>>map[i][j];
        }
    }
    dfs(0,0);
    cout<<result;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

왜 틀렸을까에 대한 의-심과 든생각들

1. result가 99999999를 넣은 것이 잘못? 더 큰 숫자로 넣었어야했나.

2. 질문게시판을 봤는데, 마지막에 예를들어 1 2 3 4-->1 에서 4-->1 로 돌아오는 길을 내가 체크를 안해서 틀렸을 가능성이 매우 높다고 판단했다.

 

2.를 고쳐서 다시 돌려봤더니 AC를 받았다.

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
#include <iostream>
#include <vector>
using namespace std;
 
int map[11][11];
bool isvisited[11];
int N;
int result= 99999999;
vector<int> v;
 
void dfs(int travelcnt, int currentnode){
    if(travelcnt==N){
        int tmp=0;
        for(int i=0; i<N-1; i++){
            tmp+=map[v[i]][v[i+1]];
        }
        if(map[v[N-1]][v[0]]==0)
            return;
        else {
            tmp += map[v[N - 1]][v[0]];
            result = min(result, tmp);
//        cout<<"result is "<<result<<"\n";
            return;
        }
    }
    else{
 
        for(int j=0; j<N; j++){
            if(map[currentnode][j]==0)
                continue;
            else if(!isvisited[j]){
//                cout<<currentnode<<" -> "<<j<<"\n";
                isvisited[j]=true;
                v.push_back(j);
                dfs(travelcnt+1,j);
                isvisited[j]=false;
                v.pop_back();
            }
        }
    }
}
 
int main(void){
 
    cin>>N;
    for(int i=0; i<N; i++){
        for(int j=0; j<N; j++){
            cin>>map[i][j];
        }
    }
    dfs(0,0);
    cout<<result;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

여담으로, 다른 사람들 채점현황 보니까 한번에 맞춘 사람은 없더라고,,

은근 한방에 2. 조건을 생각하기 사람들도 쉽지는 않았나보다.