https://www.acmicpc.net/problem/1260
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#include <iostream>
#include <stack>
#include <queue>
bool mat[1010][1010];
bool visited[1010];
int n, m, v;
void input()
{
std::cin >> n >> m >> v;
for (int y = 0; y < m; ++y)
{
int from, to;
std::cin >> from >> to;
mat[from][to] = true;
mat[to][from] = true;
}
}
void dfs()
{
std::stack<int> dfs;
dfs.push(v);
while (dfs.empty() == false)
{
int currPos = dfs.top();
dfs.pop();
if (visited[currPos] == true)
{
continue;
}
visited[currPos] = true;
std::cout << currPos << ' ';
for (int x = 1000; x > 0; --x)
{
if (mat[currPos][x] == true && visited[x] == false)
{
dfs.push(x);
}
}
}
std::cout << '\n';
}
void bfs()
{
std::queue<int> bfs;
bfs.push(v);
while (bfs.empty() == false)
{
int currPos = bfs.front();
bfs.pop();
if (visited[currPos] == true)
{
continue;
}
visited[currPos] = true;
std::cout << currPos << ' ';
for (int x = 1; x <= 1000; ++x)
{
if (mat[currPos][x] == true && visited[x] == false)
{
bfs.push(x);
}
}
}
}
void solve()
{
dfs();
for (int i = 0; i < 1010; ++i)
{
visited[i] = false;
}
bfs();
}
void output()
{
}
int main()
{
input();
solve();
output();
return 0;
}
|
cs |
벡터로 가지 않으면 시간초과가 날까 조마조마했지만
별 상관은 없었다
그러니 다시한번 기억하자 dfs는 스택, bfs는 큐
'알고리즘' 카테고리의 다른 글
koi : 경찰차(M) (0) | 2020.07.14 |
---|---|
koi : 거스름 돈(M) (0) | 2020.07.14 |
koi : minimum sum(M) (0) | 2020.06.26 |
koi : 연구활동 가는 길(L) (0) | 2020.06.26 |
koi : 저울 추(L) (0) | 2020.06.26 |