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
- 정렬
- DFS
- 알고리즘
- XR Interaction Toolkit
- 우선순위 큐
- Unreal Engine 5
- 트리
- 스택
- 누적 합
- 구현
- 그리디 알고리즘
- 수학
- 자료구조
- 그래프
- 유니티
- 다이나믹 프로그래밍
- 유니온 파인드
- 백준
- 브루트포스
- ue5
- 시뮬레이션
- 백트래킹
- 다익스트라
- BFS
- VR
- 재귀
- Team Fortress 2
- 투 포인터
- 문자열
- c++
Archives
- Today
- Total
1일1알
백준 2644번 촌수계산 C++ 본문
bfs를 이용하였다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using ll = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n, a, b, m, x, y;
cin >> n;
cin >> a >> b;
vector<vector<int>> graph(n + 1, vector<int>());
vector<bool> found(n + 1, false);
cin >> m;
for (int i = 0; i < m; i++) {
cin >> x >> y;
graph[x].push_back(y);
graph[y].push_back(x);
}
queue<pair<int, int>> q;
q.push({ a,0 });
found[a] = true;
int ans = -1;
while (!q.empty()) {
auto curr = q.front();
q.pop();
if (curr.first == b) {
ans = curr.second;
break;
}
for (auto next : graph[curr.first]) {
if (found[next]) continue;
found[next] = true;
q.push({ next,curr.second + 1 });
}
}
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 17298번 오큰수 C++ (0) | 2022.05.31 |
---|---|
백준 2573번 빙산 C++ (0) | 2022.05.30 |
백준 1189번 컴백홈 C++ (0) | 2022.05.28 |
백준 2193번 이친수 C++ (0) | 2022.05.26 |
백준 17144번 미세먼지 안녕! C++ (0) | 2022.05.25 |