반응형
[ 문제 ]
오늘도 서준이는 깊이 우선 탐색(DFS) 수업 조교를 하고 있다. 아빠가 수업한 내용을 학생들이 잘 이해했는지 문제를 통해서 확인해보자.
N개의 정점과 M개의 간선으로 구성된 무방향 그래프(undirected graph)가 주어진다. 정점 번호는 1번부터 N번이고 모든 간선의 가중치는 1이다. 정점 R에서 시작하여 깊이 우선 탐색으로 노드를 방문할 경우 노드의 방문 순서를 출력하자.
깊이 우선 탐색 의사 코드는 다음과 같다. 인접 정점은 내림차순으로 방문한다.
dfs(V, E, R) { # V : 정점 집합, E : 간선 집합, R : 시작 정점
visited[R] <- YES; # 시작 정점 R을 방문 했다고 표시한다.
for each x ∈ E(R) # E(R) : 정점 R의 인접 정점 집합.(정점 번호를 내림차순으로 방문한다)
if (visited[x] = NO) then dfs(V, E, x);
}
[ 코드 ]
1. 내 코드
using System;
namespace Baekjoon
{
class Program
{
static StreamReader sr = new StreamReader(new BufferedStream(Console.OpenStandardInput()));
static StreamWriter sw = new StreamWriter(new BufferedStream(Console.OpenStandardOutput()));
static int N, M, R;
static List<int>[] graph;
static int[] order;
static bool[] visited;
static int visitorder = 1;
static void Main()
{
string[] inputs = sr.ReadLine().Split(" ");
N = int.Parse(inputs[0]);
M = int.Parse(inputs[1]);
R = int.Parse(inputs[2]);
graph = new List<int>[N + 1];
for (int i = 0; i <= N; ++i)
{
graph[i] = new List<int>();
}
for (int i = 0; i < M; ++i)
{
inputs = sr.ReadLine().Split(" ");
int u = int.Parse(inputs[0]);
int v = int.Parse(inputs[1]);
graph[u].Add(v);
graph[v].Add(u);
}
for (int i = 1; i <= N; ++i)
{
graph[i].Sort();
graph[i].Reverse();
}
order = new int[N + 1];
visited = new bool[N + 1];
dfs(R);
for (int i = 1; i <= N; ++i)
{
sw.WriteLine(order[i]);
}
sr.Close();
sw.Close();
}
static void dfs(int node)
{
if (visited[node])
{
return;
}
visited[node] = true;
order[node] = visitorder;
++visitorder;
foreach (int next in graph[node])
{
if (visited[next] == false)
{
dfs(next);
}
}
}
}
}
2. 다른 사람 코드
var reader = new Reader();
int N = reader.NextInt();
int M = reader.NextInt();
int R = reader.NextInt();
var edges = new PriorityQueue<int, int>[N + 1];
while (M-- > 0)
{
int u = reader.NextInt();
int v = reader.NextInt();
edges[u] = edges[u] ?? new();
edges[v] = edges[v] ?? new();
edges[u].Enqueue(v, -v);
edges[v].Enqueue(u, -u);
}
var visited = new int[N + 1];
int num = 0;
DFS(R);
using (var writer = new StreamWriter(new BufferedStream(Console.OpenStandardOutput())))
for (int i = 1; i <= N; i++)
writer.WriteLine(visited[i]);
void DFS(int node)
{
visited[node] = ++num;
while (edges[node]?.Count > 0)
{
var next = edges[node].Dequeue();
if (visited[next] == 0)
DFS(next);
}
}
class Reader
{
StreamReader reader;
public Reader()
{
BufferedStream stream = new(Console.OpenStandardInput());
reader = new(stream);
}
public int NextInt()
{
bool negative = false;
bool reading = false;
int value = 0;
while (true)
{
int c = reader.Read();
if (reading == false && c == '-')
{
negative = true;
reading = true;
continue;
}
if ('0' <= c && c <= '9')
{
value = value * 10 + (c - '0');
reading = true;
continue;
}
if (reading == true)
break;
}
return negative ? -value : value;
}
}
맨날 보면 이 분 코드가 1등인데... 이 입력받는 함수를 직접 구현하는게 진짜로 그렇게 효율적일 만큼 빠른건가..?
볼때마다 신기하다...
[ 실행화면 ]
문제링크: https://www.acmicpc.net/problem/24480
반응형
'Language > C#' 카테고리의 다른 글
[C#] 백준 7795번 먹을 것인가 먹힐 것인가 (0) | 2024.05.01 |
---|---|
[C#] 백준 10867번 중복 빼고 정렬하기 (1) | 2024.04.28 |
[C#] 백준 24444번 알고리즘 수업 - 너비 우선 탐색 2 (내림차순) (0) | 2024.04.27 |
[C#] 백준 24444번 알고리즘 수업 - 너비 우선 탐색 1 (오름차순) (0) | 2024.04.27 |
[C#] 백준 1002번 터렛 (두 원 사이의 접점의 개수) (0) | 2024.04.26 |