기술 블로그

5214번 환승 본문

알고리즘 문제/BOJ

5214번 환승

parkit 2018. 8. 23. 01:51
728x90
반응형

하이퍼튜브를 하나의 '역'으로 생각하자. ( 예 : 100,001 ~ 100,1001)


DFS로 풀려다가, 생각해보니 안 풀리는 문제여서 BFS로 풀었다.




https://www.acmicpc.net/problem/5214





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
#include <iostream>
#include <queue>
#include <cstdio>
#include <vector>
#include <cstring>
#include <string>
#include <math.h>
#include <algorithm>
 
using namespace std;
 
vector<int> v[102002];
 
int N = 0, K = 0, M = 0;
 
int result = 0;
 
int BFS(int start)
{
    queue<int> q;
 
    bool visit[102002= { false, };
 
    q.push(start);
 
    visit[start] = true;
 
    int ret = 1// 1번 역도 포함이다.
 
    while (!q.empty())
    {
        int qSize = q.size();
 
        while (qSize--)
        {
            int here = q.front();
 
            q.pop();
 
            if (here == N)
            {
                return ret;
            }
 
            for (auto next : v[here])
            {
                if (!visit[next])
                {
                    visit[next] = true;
                    q.push(next);
                }
            }
        }
 
        ++ret;
    }
 
    return -1// 도달 실패
}
 
int main(void)
{
    int cnt = 1, vertex = 0;
 
    scanf("%d %d %d"&N, &K, &M);
 
    while (M--)
    {
        for (int i = 0; i < K; i++)
        {
            scanf("%d"&vertex);
 
            v[N + cnt].push_back(vertex);
            v[vertex].push_back(N + cnt);
        }
 
        ++cnt;
    }
 
    int result = BFS(1);
 
    if (result != -1printf("%d\n", (result + 1/ 2);
    else printf("-1\n");
 
    return 0;
}
cs


728x90
반응형

'알고리즘 문제 > BOJ' 카테고리의 다른 글

2309번 일곱 난쟁이  (0) 2018.08.23
2468번 안전 영역  (0) 2018.08.23
1012번 유기농 배추  (0) 2018.08.23
2580번 스도쿠  (0) 2018.08.22
11559번 Puyo Puyo  (0) 2018.08.22