[BOJ] 1260 DFS와 BFS
Post
취소

[BOJ] 1260 DFS와 BFS

문제 요약 및 풀이

1260번: DFS와 BFS

크게 따로 설명할 건 없다.

DFS와 BFS를 구현하면 된다.

(번외로, DFS와 BFS는 최대한 깔끔하게 구현하는 자기만의 코드가 있으면 좋은 것 같다.)

풀이 코드

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
#include <bits/stdc++.h>

#define for1(s,n) for(int i = s; i<n; i++)
#define pb(a) push_back(a)

using namespace std;

int N, M, V;
vector<int> adj[1100];
bool check[1100];

int a, b;

void dfs(int crt) {
  cout << crt << ' ';

  if(!check[crt]) {
    check[crt] = 1;

    for(auto i: adj[crt]) {
      if(!check[i]) {
        dfs(i);
      }
    }
  }
}

int main() {
  ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);

  cin >> N >> M >> V;

  for1(0, M) {
    cin >> a >> b;
    adj[a].pb(b);
    adj[b].pb(a);    
  }

  for1(1, N+1) sort(adj[i].begin(), adj[i].end());

  dfs(V);

  cout << '\n';

  fill(check, check+1100, false);

  queue <int> Q;
  Q.push(V);

  while(!Q.empty()) {
    int crt = Q.front(); Q.pop();

    if(!check[crt]) {
      cout << crt << ' ';
      check[crt] = 1;
      for(auto i: adj[crt]) {
        if(!check[i]) {
          Q.push(i);
        }
      }
    }
  }
}

This post is licensed under CC BY 4.0 by the author.