1185 (1) 썸네일형 리스트형 백준#1185 유럽 여행 (Java) 전체코드 /** * author : MoonDooo * 백준 #1185 유럽여행 */ import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.*; public class Main { public static void main(String[] args){ new sol(); } } class sol{ Buf buf = new Buf(); int N, P; public sol(){ // 초기화 N = buf.getInt(); P = buf.getInt(); int[] root = new int[N]; int[] localCost = new int[N]; Priority.. 이전 1 다음