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
- 우선순위 큐
- 다이나믹 프로그래밍
- XR Interaction Toolkit
- 재귀
- Team Fortress 2
- DFS
- 알고리즘
- 스택
- 누적 합
- 트리
- ue5
- 시뮬레이션
- 수학
- 브루트포스
- 백트래킹
- VR
- Unreal Engine 5
- 문자열
- 백준
- 그래프
- 자료구조
- BFS
- c++
- 유니티
- 구현
- 정렬
- 다익스트라
- 유니온 파인드
- 투 포인터
- 그리디 알고리즘
Archives
- Today
- Total
1일1알
백준 1389번 케빈 베이컨의 6단계 법칙 본문
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>
using namespace std;
using ll = long long;
void RefreshFound(vector<bool>& found, int n) {
for (int i = 1; i <= n; i++) {
found[i] = false;
}
}
int bfs(int n, const vector<vector<int>>& graph, vector<bool> &found) {
int ret = 0;
found[n] = true;
queue<pair<int, int>> q;
q.push({ n,0 });
while (!q.empty()) {
auto curr = q.front();
q.pop();
ret += curr.second;
for (auto next : graph[curr.first]) {
if (found[next]) continue;
found[next] = true;
q.push({ next,curr.second + 1 });
}
}
return ret;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n, m;
cin >> n >> m;
vector<vector<int>> graph(n + 1, vector<int>());
vector<bool> found(n + 1, false);
for (int i = 0; i < m; i++) {
int a, b;
cin >> a >> b;
graph[a].push_back(b);
graph[b].push_back(a);
}
int minScore = 987654321;
int ans = 0;
for (int i = 1; i <= n; i++) {
RefreshFound(found, n);
int score = bfs(i, graph, found);
if (score < minScore) {
minScore = score;
ans = i;
}
}
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 6603번 로또 C++ (0) | 2022.04.09 |
---|---|
백준 16236번 아기 상어 C++ (0) | 2022.04.07 |
백준 11403번 경로 찾기 C++ (0) | 2022.04.05 |
백준 2239번 스도쿠 C++ (0) | 2022.04.04 |
백준 15666번 N과 M (12) C++ (0) | 2022.04.02 |