알고리즘/PS - 백준

[백준 1260 - C++] DFS와 BFS : DFS & BFS

excited-hyun 2021. 2. 8. 19:28
반응형

www.acmicpc.net/problem/1260

 

1260번: DFS와 BFS

첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사

www.acmicpc.net

문제

그래프를 DFS로 탐색한 결과와 BFS로 탐색한 결과를 출력하는 프로그램을 작성하시오. 단, 방문할 수 있는 정점이 여러 개인 경우에는 정점 번호가 작은 것을 먼저 방문하고, 더 이상 방문할 수 있는 점이 없는 경우 종료한다. 정점 번호는 1번부터 N번까지이다.

 

입력

첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사이에 여러 개의 간선이 있을 수 있다. 입력으로 주어지는 간선은 양방향이다.

 

출력

첫째 줄에 DFS를 수행한 결과를, 그 다음 줄에는 BFS를 수행한 결과를 출력한다. V부터 방문된 점을 순서대로 출력하면 된다.

 

 

풀이

정직한 제목 정직한 풀이다. V부터 DFS와 BFS 두가지 방식으로 탐색을 하며 움직이는 정점을 출력하면 되는 것이다.

 

#include <iostream>
#include <cstdio>
#include <queue>
#include <vector>

using namespace std;

void bfs();
void dfs(int here);

int adj[1001][1001];
vector<bool> b_visit;
vector<bool> d_visit;
queue<int> bq;

int n, m, v;

int main(void){
    
    int a, b;
    
    scanf("%d %d %d", &n, &m, &v);

    for(int i=0; i<m; i++){
        scanf("%d %d", &a, &b);
        adj[a][b] = 1;
        adj[b][a] = 1;
    }

    b_visit = vector<bool>(1001, false);
    d_visit = vector<bool>(1001, false);
    
    dfs(v);
    printf("\n");
    
    bfs();
    printf("\n");
}

void dfs(int here){
    int there;
    d_visit[here] = true;
    printf("%d ", here);
    for(int i=1; i<=n; i++){
        if(adj[here][i] != 1)
            continue;
        
        there = i;
        
        if(!d_visit[there])
            dfs(there);
    }
}

void bfs(){
    int here, there;
    
    
    bq.push(v);
    b_visit[v] = true;
    while(!bq.empty()){
        here = bq.front();
        bq.pop();
        
        printf("%d ", here);
        for(int i=1; i<=n; i++){
            if(adj[here][i] != 1)
                continue;
            
            there = i;
            
            if(!b_visit[there]){
                bq.push(there);
                b_visit[there] = true;
            }
        }
    }
}
728x90
반응형