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
- 재귀함수
- 엘라스틱서치
- GatherTown
- YBMCOS
- 취득후기
- 백준
- 게더타운시작
- DFS
- 완전탐색
- 네트워크플로우
- COSPRO
- java
- 이젠 골드구현도 어렵네..
- 우선순위큐
- 세그먼트트리
- 다익스트라
- dp
- deque
- COSPROJAVA1급
- BFS
- 01BFS
- 시뮬레이션
- 자바PS
- 알고리즘
- 백준코딩테스트
- spring
- 구현
- QUICKSTARTGUIDE
- PS
- 다이나믹프로그래밍
Archives
- Today
- Total
공부공간
BOJ- 11404 ) 플로이드 본문
https://www.acmicpc.net/problem/11404
플로이드-워셜문제의 기본적인 형태이다.
그래프에서 전체의 최단경로를 구할때에 O(N^3)으로 구할수있다.
For문을 돌면서 나와 인접하게 갈수있는 경로를 갱신하면서 최단경로를 구하는 알고리즘이다.
약간 외워서 푸는꼴.. 3중 for에 mid start end 순으로 들어가서 거쳐서 건너간다 라는 식으로 생각하면 쉽다.
import java.util.Scanner;
public class Main {
static int num;
static int INF = 2147000000;
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
Scanner scan = new Scanner(System.in);
num = scan.nextInt();
int graph[][] = new int[num+1][num+1];
int bus = scan.nextInt();
for(int y = 1 ; y <= num ; y++) {
for(int x = 1 ; x <= num ; x++) {
graph[y][x] = INF;
if(y==x) graph[y][x] = 0;
}
}
for(int index = 0 ; index < bus; index++) {
int start , end , cost ;
start = scan.nextInt();
end = scan.nextInt();
cost = scan.nextInt();
if(graph[start][end] > cost) graph[start][end] = cost;
}
for(int mid = 1; mid<= num ; mid++) {
for(int start = 1 ; start <= num ; start++) {
for(int end = 1 ; end <= num ; end ++) {
if(graph[end][mid] != INF && graph[mid][start] != INF) {
if(graph[end][start] > graph[end][mid] + graph[mid][start]){
graph[end][start] = graph[end][mid] + graph[mid][start];
}
}
}
}
}
for(int y = 1 ; y <= num ; y++) {
for(int x = 1 ; x <= num ; x++) {
if(graph[y][x] == INF) System.out.print(0+" ");
else System.out.print(graph[y][x]+ " ");
}
System.out.println();
}
}
}
'알고리즘 > 완전탐색(BFS,DFS)' 카테고리의 다른 글
SWEA - 2112 ) 보호 필름 (0) | 2020.02.20 |
---|---|
BOJ -17142 ) 연구소3 (0) | 2020.02.18 |
BOJ - 17471 ) 게리맨더링 (0) | 2020.02.17 |
BOJ - 7576 ) 토마토 (0) | 2020.02.17 |
BOJ - 2146 ) 다리만들기 (0) | 2020.02.13 |
Comments