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
- 유레카
- 완전 탐색
- 비트마스킹
- dp
- 구현
- 도커
- 구간 트리
- 스프링 시큐리티
- ZuulFilter
- spring boot
- 플로이드 와샬
- 이분 탐색
- 주울
- 메모이제이션
- 서비스 디스커버리
- Gradle
- 트리
- Logback
- Java
- spring cloud
- 스택
- 다익스트라
- 백트래킹
- 게이트웨이
- docker-compose
- 달팽이
- 이분 매칭
- Zuul
- BFS
- Spring Cloud Config
Archives
- Today
- Total
Hello, Freakin world!
[백준 11403번][Java] 경로 찾기 - [모든 정점 간 최단 거리 찾기 : 플로이드 와샬] 본문
import java.io.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.StringTokenizer;
/*
경로 찾기
*/
public class Main {
static int n;
static int[][] adj;
public static void main(String[] args) throws IOException {
// InputReader reader = new InputReader("testcase.txt");
InputReader reader = new InputReader();
n = reader.readInt();
adj = new int[n][n];
for (int i = 0; i < n; i++) {
StringTokenizer st = new StringTokenizer(reader.readLine());
for (int j = 0; j < n; j++) {
int element = Integer.parseInt(st.nextToken());
adj[i][j] = element;
}
}
StringBuilder sb = new StringBuilder();
floyd();
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
sb.append(adj[i][j]);
if(j != n-1) sb.append(" ");
if(j == n-1) sb.append("\n");
}
}
sb.deleteCharAt(sb.length()-1);
System.out.println(sb.toString());
}
public static void floyd() {
for (int k = 0; k < n; k++) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
boolean noVisitK = adj[i][j] == 1;
boolean visitK = (adj[i][k] == 1) && (adj[k][j] == 1);
adj[i][j] = (noVisitK || visitK) ? 1 : 0;
}
}
}
}
}
class InputReader {
private BufferedReader br;
public InputReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
public InputReader(String filepath) {
try {
br = new BufferedReader(new FileReader(filepath));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public List<Character> readLineIntoCharList() throws IOException {
List<Character> l = new ArrayList<>();
while(true) {
int readVal = br.read();
if(readVal == '\n' || readVal == -1) break;
l.add((char)readVal);
}
return l;
}
public boolean ready() throws IOException {
return br.ready();
}
public String readLine() throws IOException {
return br.readLine();
}
public int readInt() throws IOException {
return Integer.parseInt(readLine());
}
public Long readLong() throws IOException {
return Long.parseLong(readLine());
}
}
'알고리즘 > PS' 카테고리의 다른 글
[백준 1208번][Java] 부분수열의 합 2 - 중간에서 만나기? (0) | 2020.10.09 |
---|---|
[백준 1389번][Java] 케빈 베이컨의 6단계 법칙 - 플로이드 와샬 (0) | 2020.10.07 |
[백준 11286번][Java] 절댓값 힙 - 힙 구현하기[응용편] (0) | 2020.10.07 |
[백준 2512번][Java] 예산 - 이분 탐색 종결 조건 (0) | 2020.10.06 |
[백준 17827번][Java] 달팽이 리스트 - offset이 있는 모드 연산 (0) | 2020.10.06 |
Comments