Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- inflearn
- 열혈 TCP/IP 소켓 프로그래밍
- 스프링 핵심 원리
- n타일링2
- 열혈 tcp/ip 프로그래밍
- 에러핸들링
- C#
- BOJ
- 10026번
- HTTP
- 이펙티브코틀린
- 우아한레디스
- 윤성우 저자
- redis
- 토마토
- 김영한
- 운영체제
- 제프리리처
- Window-Via-c/c++
- OS
- 우아한 테크 세미나
- Operating System.
- FIFO paging
- Spring
- Four Squares
- 2475번
- Operating System
- C++
- 스프링 입문
- TCP/IP
Archives
- Today
- Total
나의 브을로오그으
[c++] 1260번 : DFS와 BFS 본문
https://www.acmicpc.net/problem/1260
#include <iostream>
#include <stack>
#include <queue>
#include <vector>
using namespace std;
#define MAX_VERTEX 1000
void DFS(bool[][MAX_VERTEX + 1], int, int);
void BFS(bool[][MAX_VERTEX + 1], int, int);
void print(vector<int>&);
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
bool edges[MAX_VERTEX + 1][MAX_VERTEX + 1] = { false, };
int N = 0, M = 0, V = 0;
cin >> N >> M >> V;
int from = 0, to = 0;
for (int i = 0; i < M; ++i)
{
cin >> from >> to;
edges[from][to] = true;
edges[to][from] = true;
}
DFS(edges, N, V);
BFS(edges, N, V);
return 0;
}
void DFS(bool edges[][MAX_VERTEX + 1], int vCnt, int start)
{
bool vertexs[MAX_VERTEX + 1] = { false, };
stack<int> st;
vector<int> v;
v.reserve(vCnt);
vertexs[start] = true;
st.push(start);
v.push_back(start);
while (st.empty() == false)
{
int cur = st.top();
st.pop();
for (int i = 1; i <= vCnt; ++i)
{
if (vertexs[i] == false && edges[cur][i] == true)
{
vertexs[i] = true;
st.push(cur);
st.push(i);
v.push_back(i);
break;
}
}
}
print(v);
return;
}
void BFS(bool edges[][MAX_VERTEX + 1], int vCnt, int start)
{
bool vertexs[MAX_VERTEX + 1] = { false, };
queue<int> q;
vector<int> v;
v.reserve(vCnt);
vertexs[start] = true;
q.push(start);
v.push_back(start);
while (q.empty() == false)
{
int cur = q.front();
q.pop();
for (int i = 1; i <= vCnt; ++i)
{
if (vertexs[i] == false && edges[cur][i] == true)
{
vertexs[i] = true;
q.push(i);
v.push_back(i);
}
}
}
print(v);
return;
}
void print(vector<int>& v)
{
for (size_t i = 0; i < v.size(); ++i)
{
cout << v[i] << ' ';
}
cout << '\n';
return;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 1463번 : 1로 만들기 (0) | 2022.06.03 |
---|---|
[c++] 1389번 : 케빈 베이컨의 6단계 법칙 (0) | 2022.06.02 |
[c++] 1107번 : 리모컨 (0) | 2022.05.30 |
[c++] 1074번 : Z (0) | 2022.05.20 |
[c++] 1012번 : 유기농 배추 (0) | 2022.05.18 |