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
- 브루트포스
- JPA
- 다익스트라
- 리소스 서버
- application.properties
- cors
- Application Runner
- OAuth2
- Application Argument
- rest api
- 백준
- @ConfigurationProperties
- JsonSerializer
- 스프링부트
- HttpMessageConverters
- 스프링 부트
- Application Event
- WebApplication Type
- 정적 리소스
- AuthenticationPrincipal
- Spring Security
- EnableAutoConfiguration
- @Profile
- 백트래킹
- 백기선
- webjar
- HATEOAS
- 리소스핸들러
- 외부설정
- 알고리즘
Archives
- Today
- Total
아카이브
[백준]1389.케빈 베이컨의 6단계 법칙 본문
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.StringTokenizer;
public class Main {
static int N, M;
static ArrayList<Integer>[] arrayLists;
static int[] ans;
static boolean[] visit;
static int[] dist;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
ans = new int[N + 1];
arrayLists = new ArrayList[N + 1];
for (int i = 1; i < N + 1; i++) {
arrayLists[i] = new ArrayList<>();
}
for (int i = 0; i < M; i++) {
st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
arrayLists[a].add(b);
arrayLists[b].add(a);
}
for (int i = 1; i < N + 1; i++) {
visit = new boolean[N + 1];
visit[i] = true;
dist = new int[N + 1];
DFS(i, 0);
// for (int j = 1; j < N + 1; j++) {
// System.out.print(dist[j] + " ");
// }
// System.out.println();
ans[i] = getKevin_Bacon();
}
// System.out.println();
// for (int i = 1; i < N + 1; i++) {
// System.out.print(ans[i] + " ");
// }
System.out.println(getMinKevinBaconIdx());
}
static int getKevin_Bacon() {
int sum = 0;
for (int val : dist) {
sum += val;
}
return sum;
}
static void DFS(int start, int depth) {
if (dist[start] != 0) {
dist[start] = Math.min(dist[start], depth);
} else {
dist[start] = depth;
}
for (int i = 0; i < arrayLists[start].size(); i++) {
int next = arrayLists[start].get(i);
if (!visit[next]) {
visit[next] = true;
DFS(next, depth + 1);
visit[next] = false;
}
}
}
static int getMinKevinBaconIdx() {
int idx = 0;
int min = Integer.MAX_VALUE;
for (int i = 1; i < N + 1; i++) {
if (ans[i] < min) {
idx = i;
min = ans[i];
}
}
return idx;
}
}
'자료구조&알고리즘' 카테고리의 다른 글
[백준]1987.알파벳 (0) | 2020.09.14 |
---|---|
[백준]13549.숨바꼭질3 (0) | 2020.09.14 |
[백준]1753.최단경로 (0) | 2020.09.14 |
[백준]1238.파티 (0) | 2020.09.14 |
[KAKAO BLIND 2018] 1차 - 프렌즈4블록 (0) | 2020.09.11 |