반응형
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
- @P0
- incr
- BFS
- 백트래킹
- 연결요소
- 매개변수탐색
- 경력
- 기술면접
- Kafka
- 백준
- msSQL
- upper_bound
- 파라메트릭
- 처우협의
- 6987
- 이분탐색
- 성적평가
- Docker
- 13908
- 오퍼레터
- softeer
- OFFSET
- 물채우기
- dfs
- BOJ
- boj #19237 #어른 상어
- 퇴사통보
- 소프티어
- compose
- 처우산정
Archives
- Today
- Total
기술 블로그
5214번 환승 본문
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 != -1) printf("%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 |