반응형
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
- BOJ
- Docker
- 6987
- 성적평가
- dfs
- 처우협의
- 기술면접
- 물채우기
- 이분탐색
- 경력
- @P0
- 백준
- upper_bound
- boj #19237 #어른 상어
- Kafka
- 퇴사통보
- 매개변수탐색
- 13908
- BFS
- 파라메트릭
- 연결요소
- compose
- 처우산정
- incr
- softeer
- 오퍼레터
- OFFSET
- 소프티어
- 백트래킹
- msSQL
Archives
- Today
- Total
기술 블로그
2644번 촌수계산 본문
728x90
반응형
쉬운 문제였다.
전형적인 BFS 문제이다.
https://www.acmicpc.net/problem/2644
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 | #include <iostream> #include <queue> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> using namespace std; int n = 0, m = 0; int sv = 0, ev = 0; vector<vector<int> > v; bool visit[101] = { false, }; queue<int> q; int BFS(int start) { q.push(start); int ret = 0; while (!q.empty()) { int qSize = q.size(); while (qSize--) { int here = q.front(); q.pop(); if (here == ev) { return ret; } if (visit[here]) continue; visit[here] = true; for (int next : v[here]) { if (!visit[next]) { q.push(next); } } } ++ret; } return -1; } int main(void) { scanf("%d", &n); v.resize(n + 1); scanf("%d %d", &sv, &ev); scanf("%d", &m); int left = 0, right = 0; while (m--) { scanf("%d %d", &left, &right); v[left].push_back(right); v[right].push_back(left); } printf("%d\n", BFS(sv)); return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
1389번 케빈 베이컨의 6단계 법칙 (0) | 2018.08.30 |
---|---|
6603번 로또 (0) | 2018.08.30 |
10815번 숫자 카드 (0) | 2018.08.28 |
1920번 수 찾기 (0) | 2018.08.27 |
11279번 최대 힙 (0) | 2018.08.26 |