Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- gcp
- Kafka
- 스프링
- 로드밸런서
- Docker
- 카프카
- DFS
- 오일러프로젝트
- VPC
- 스프링 부트
- springboot
- Spring Boot
- 백트래킹
- 스프링부트
- Spring Data JPA
- Spring
- 쿠버네티스
- JPA
- 코드업
- 클라우드 컴퓨팅
- 월미도
- 클라우드
- Apache Kafka
- Elasticsearch
- aws
- 백준
- 프로그래밍문제
- 알고리즘
- 자료구조
- 인천여행
Archives
- Today
- Total
GW LABS
[Backjoon] 케빈 베이컨의 6단계 법칙 본문
C++로 그래프 탐색에 대한 문제를 연습한 적이 많지 않다. 파이썬으로 풀때와 차이점은 BFS 문제에 그래프 깊이 정보를 pair<int, int> 형식으로 queue에 넣어도 메모리 초과 문제가 발생하지 않는 것 같다(오....). 1389번 케빈 베이컨의 6단계 법칙은 양방향 인접리스트를 입력받아 그래프 노드간 거리를 구하고, 그 합계가 최소인 지점을 찾는 문제이다. DFS로 풀이하려고 했는데 문제 분류에 BFS가 되어 있어 BFS로 풀이했다.
#include <iostream>
#include <map>
#include <queue>
#include <vector>
#include <cstring>
using namespace std;
bool visited[201] = {false};
int getLinkScore(int user, int target, map<int, vector<int>> link) {
int score = 0;
queue<pair<int, int>> q;
q.push(make_pair(user, score));
while (!q.empty()) {
int search = q.front().first;
int nowScore = q.front().second;
q.pop();
if (search == target) {
score = nowScore;
break;
}
for (auto l : link[search]) {
if (!visited[l]) {
q.push(make_pair(l, nowScore + 1));
}
}
}
memset(visited, false, sizeof(visited));
return score;
}
int main() {
int totalCount, linkCount;
cin >> totalCount >> linkCount;
map<int, vector<int>> link;
for (int i = 1; i <= totalCount; i++) {
vector<int> container;
link[i] = container;
}
while (linkCount--) {
int user, linkTarget;
cin >> user >> linkTarget;
link[user].push_back(linkTarget);
link[linkTarget].push_back(user);
}
int answerUser = 0, baconScore = INT32_MAX;
for (int user = 1; user <= totalCount; ++user) {
int tmpScore = 0;
for (int targetUser = 1; targetUser <= totalCount; ++targetUser) {
if (user == targetUser) continue;
int result = getLinkScore(user, targetUser, link);
tmpScore += result;
}
if (baconScore > tmpScore) {
answerUser = user;
baconScore = tmpScore;
}
}
cout << answerUser << endl;
}
'Algorithm & DataStructure > Problems' 카테고리의 다른 글
[Backjoon] 11586번 지영 공주님의 마법 거울 (0) | 2021.10.21 |
---|---|
[Backjoon] 순열 사이클 (0) | 2021.07.03 |
[Backjoon] 희주의 수학시험 (0) | 2021.06.24 |
[Backjoon] 동혁 피자 (0) | 2021.06.06 |
[Backjoon] 좌표 압축 (0) | 2021.04.24 |
Comments