[BOJ] 4485. 녹색 옷 입은 애가 젤다지?
https://www.acmicpc.net/problem/4485 접근 방법 (0,0) → (N-1,N-1)로 이동을 할 때 가장 적은 비용으로 가야함. 다익스트라 알고리즘 https://dev-room.tistory.com/18 Need Know 다익스트라 알고리즘 전체 코드 ( Java ) import javafx.scene.Node; import java.io.*; import java.nio.Buffer; import java.util.*; public class Main { static int N; static int M; static int[] dist; static ArrayList[] map; static PriorityQueue pq; public static void main(Strin..
2020.07.28