티스토리 뷰
문제 링크입니다
https://www.acmicpc.net/problem/1260
DFS, BFS에 대한 설명은 아래 링크를 참고해주세요.
https://dvpzeekke.tistory.com/37?category=887119
https://dvpzeekke.tistory.com/36?category=887119
//
// main.cpp
// 1260
//
// Created by Jihye on 2020/01/14.
// Copyright © 2020 Jihye Han. All rights reserved.
//
#include <iostream>
#include <queue>
#include <cstring>
using namespace std;
const int MAX = 1000 + 1;
int N, M, V;
int map[MAX][MAX];
bool visited[MAX];
queue<int> q;
void DFS(int index) {
visited[index] = true;
cout << index << " ";
for (int i = 1; i <= N; i++) {
if ((!visited[i]) && (map[i][index] == 1)) {
DFS(i);
}
}
}
void BFS(int index) {
q.push(index);
visited[index] = true;
while (!q.empty()) {
index = q.front();
q.pop();
cout << index << " ";
for (int i = 1; i <= N; i++) {
if ((!visited[i]) && (map[index][i] == 1)) {
visited[i] = true;
q.push(i);
}
}
}
}
int main(void) {
cin >> N >> M >> V;
for (int i = 0; i < M; i++) {
int from, to;
cin >> from >> to;
map[from][to] = 1;
map[to][from] = 1;
}
DFS(V);
cout << endl;
memset(visited, false, sizeof(visited));
BFS(V);
cout << endl;
return 0;
}
'Dev.CodingTest > BACKJOON' 카테고리의 다른 글
[백준 c++] 13458번 : 시험 감독 (0) | 2020.04.25 |
---|---|
[백준 c++] 3190번 : 뱀 (0) | 2020.04.25 |
[백준 c++] 12100번 : 2048 (Easy) (2) | 2020.04.24 |
[백준 c++] 13459번 : 구슬 탈출 (1) | 2020.04.14 |
[백준 c++] 13460번 : 구슬 탈출 2 (0) | 2020.04.14 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Xcode
- Swift
- ec2
- 자료구조
- 시뮬레이션
- 컬렉션
- 백준
- dp
- Collection
- SummerCoding
- BFS
- 알고리즘
- 프로그래머스
- isempty
- c++
- 깊이우선탐색
- 이진트리
- Programmers
- datastructure
- 코딩테스트
- 서머코딩
- dfs
- 삼성역량테스트
- ios
- aws
- algorithm
- count
- 구슬탈출
- 스위프트
- 호제법
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함