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 | 31 |
Tags
- JUnit 5
- 플로이드-와샬
- 위상정렬
- 동적계획법
- 투 포인터
- mst
- dfs
- 문자열
- BFS
- 그리디
- 백트래킹
- 프로그래머스
- CS
- 세그먼트 트리
- 이분탐색
- 스택
- 알고리즘
- java
- swea
- 수학
- 후니의 쉽게 쓴 시스코 네트워킹
- Kotlin
- 구현
- Network
- 완전탐색
- Effective Java
- 유니온 파인드
- 백준
- 시뮬레이션
- 에라토스테네스의 체
Archives
반갑습니다!
[백준] 1389 케빈 베이컨의 6단계 법칙 본문
풀이
N이 100 이하이므로 플로이드-와샬 알고리즘을 사용하면 쉽게 해결할 수 있다. 플로이드 와샬 알고리즘을 사용해 친구들간의 거리를 구한 뒤, 가장 작은 케빈 베이컨 수를 가진 친구의 번호를 출력하면 된다.
코드
C++
#include <iostream>
#include <vector>
using namespace std;
const int INF = 1e9;
int n, m;
vector<vector<int>> adj;
void floyd_warshall() {
for (int k = 1; k <= n; k++)
for (int i = 1; i <= n; i++)
for (int j = 1; j <= n; j++)
if (adj[i][j] > adj[i][k] + adj[k][j])
adj[i][j] = adj[i][k] + adj[k][j];
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n >> m;
adj = vector<vector<int>>(n + 1, vector<int>(n + 1, INF));
for (int i = 1; i <= n; i++) adj[i][i] = 0;
for (int i = 0; i < m; i++) {
int a, b;
cin >> a >> b;
adj[a][b] = 1;
adj[b][a] = 1;
}
floyd_warshall();
int count = INF;
int idx;
for (int i = 1; i <= n; i++) {
int cnt = 0;
for (int j = 1; j <= n; j++)
cnt += adj[i][j];
if (count > cnt) {
count = cnt;
idx = i;
}
}
cout << idx << '\n';
return 0;
}
Java
import java.io.*;
import java.util.Arrays;
import java.util.StringTokenizer;
public class Main {
public static int n, m;
public static int[][] adj;
public static final int INF = 1000000000;
public static void floydWarshall() {
for (int k = 1; k <= n; k++)
for (int i = 1; i <= n; i++)
for (int j = 1; j <= n; j++)
if (adj[i][j] > adj[i][k] + adj[k][j])
adj[i][j] = adj[i][k] + adj[k][j];
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer st = new StringTokenizer(br.readLine());
n = Integer.parseInt(st.nextToken());
m = Integer.parseInt(st.nextToken());
adj = new int[n + 1][n + 1];
for (int i = 1; i <= n; i++) Arrays.fill(adj[i], INF);
for (int i = 1; i <= n; i++) adj[i][i] = 0;
for (int i = 0; i < m; i++) {
st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
adj[a][b] = 1;
adj[b][a] = 1;
}
floydWarshall();
int count = INF;
int idx = 0;
for (int i = 1; i <= n; i++) {
int cnt = 0;
for (int j = 1; j <= n; j++)
cnt += adj[i][j];
if (count > cnt) {
count = cnt;
idx = i;
}
}
bw.write(String.valueOf(idx));
bw.flush();
}
}
Python3
import sys
input = sys.stdin.readline
INF = 1e9
n, m = map(int, input().rstrip().split())
adj = [[INF] * (n + 1) for _ in range(n + 1)]
for _ in range(m):
a, b = map(int, input().rstrip().split())
adj[a][b] = 1
adj[b][a] = 1
for i in range(1, n + 1):
adj[i][i] = 0
def floyd_warshall():
for k in range(1, n + 1):
for i in range(1, n + 1):
for j in range(1, n + 1):
if adj[i][j] > adj[i][k] + adj[k][j]:
adj[i][j] = adj[i][k] + adj[k][j]
floyd_warshall()
count = INF
idx = 0
for i in range(1, n + 1):
cnt = 0
for j in range(1, n + 1):
cnt += adj[i][j]
if count > cnt:
count = cnt
idx = i
print(idx)
'알고리즘 문제 풀이' 카테고리의 다른 글
[백준] 11060 점프 점프 (0) | 2020.10.04 |
---|---|
[백준] 1259 펠린드롬수 (0) | 2020.10.03 |
[백준] 2458 키 순서 (0) | 2020.09.30 |
[백준] 14496 그대, 그머가 되어 (0) | 2020.09.30 |
[프로그래머스] 스티커 모으기(2) (0) | 2020.09.25 |