대놓고 다익스트라 문젠데 30분 걸렸다. 구현 자체가 너무 오래 걸린다. 자바가 뭔가 할게 많은 것 같다..import java.io.*;import java.sql.Array;import java.util.*;public class Main { static int V,E,K;//1 450만정도 //노드와 노드 사이 간선 여러개 존재 가능 static List[] edges; static class Road{ int dst; int weight; Road(int dst, int weight){ this.dst = dst; this.weight = weight; } } static cl..