結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー htensaihtensai
提出日時 2020-06-04 11:58:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,834 ms / 2,000 ms
コード長 1,871 bytes
コンパイル時間 4,218 ms
コンパイル使用メモリ 79,408 KB
実行使用メモリ 102,468 KB
最終ジャッジ日時 2024-11-28 11:19:33
合計ジャッジ時間 55,065 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,364 KB
testcase_01 AC 120 ms
41,708 KB
testcase_02 AC 1,298 ms
76,724 KB
testcase_03 AC 1,461 ms
96,888 KB
testcase_04 AC 1,634 ms
97,496 KB
testcase_05 AC 1,485 ms
92,232 KB
testcase_06 AC 1,447 ms
92,380 KB
testcase_07 AC 775 ms
64,636 KB
testcase_08 AC 1,420 ms
102,468 KB
testcase_09 AC 516 ms
50,748 KB
testcase_10 AC 1,012 ms
74,684 KB
testcase_11 AC 852 ms
69,372 KB
testcase_12 AC 973 ms
66,600 KB
testcase_13 AC 1,374 ms
80,700 KB
testcase_14 AC 1,420 ms
83,964 KB
testcase_15 AC 1,494 ms
89,900 KB
testcase_16 AC 1,166 ms
73,400 KB
testcase_17 AC 1,556 ms
93,772 KB
testcase_18 AC 1,034 ms
66,748 KB
testcase_19 AC 1,421 ms
90,940 KB
testcase_20 AC 873 ms
64,788 KB
testcase_21 AC 1,134 ms
69,136 KB
testcase_22 AC 1,339 ms
86,140 KB
testcase_23 AC 238 ms
47,652 KB
testcase_24 AC 261 ms
47,804 KB
testcase_25 AC 936 ms
64,028 KB
testcase_26 AC 1,145 ms
72,788 KB
testcase_27 AC 1,139 ms
74,316 KB
testcase_28 AC 1,470 ms
86,460 KB
testcase_29 AC 604 ms
52,492 KB
testcase_30 AC 1,484 ms
89,628 KB
testcase_31 AC 1,282 ms
77,948 KB
testcase_32 AC 1,113 ms
71,476 KB
testcase_33 AC 1,458 ms
89,800 KB
testcase_34 AC 1,058 ms
69,240 KB
testcase_35 AC 1,600 ms
88,696 KB
testcase_36 AC 217 ms
46,260 KB
testcase_37 AC 226 ms
46,752 KB
testcase_38 AC 209 ms
46,332 KB
testcase_39 AC 226 ms
46,696 KB
testcase_40 AC 186 ms
44,292 KB
testcase_41 AC 1,834 ms
102,008 KB
testcase_42 AC 1,034 ms
70,112 KB
testcase_43 AC 1,337 ms
77,288 KB
testcase_44 AC 755 ms
63,372 KB
testcase_45 AC 1,263 ms
77,224 KB
testcase_46 AC 105 ms
40,536 KB
testcase_47 AC 110 ms
41,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int x = sc.nextInt() - 1;
		int y = sc.nextInt() - 1;
	    Point[] points = new Point[n];
	    ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
	    for (int i = 0; i < n; i++) {
	        points[i] = new Point(sc.nextInt(), sc.nextInt());
	        graph.add(new ArrayList<>());
	    }
	    for (int i = 0; i < m; i++) {
	        int a = sc.nextInt() - 1;
	        int b = sc.nextInt() - 1;
	        graph.get(a).add(b);
	        graph.get(b).add(a);
	    }
	    PriorityQueue<Path> queue = new PriorityQueue<>();
	    queue.add(new Path(x, 0));
	    double[] costs = new double[n];
	    Arrays.fill(costs, Double.MAX_VALUE);
	    while (queue.size() > 0) {
	        Path p = queue.poll();
	        if (costs[p.idx] <= p.value) {
	            continue;
	        }
	        costs[p.idx] = p.value;
	        for (int next : graph.get(p.idx)) {
	            queue.add(new Path(next, p.value + points[p.idx].getDistance(points[next])));
	        }
	    }
		System.out.println(costs[y]);
	}
	
	static class Path implements Comparable<Path> {
	    int idx;
	    double value;
	    
	    public Path(int idx, double value) {
	        this.idx = idx;
	        this.value = value;
	    }
	    
	    public int compareTo(Path another) {
	        if (value == another.value) {
	            return 0;
	        } else if (value < another.value) {
	            return -1;
	        } else {
	            return 1;
	        }
	    }
	}
	
	static class Point {
	    int x;
	    int y;
	    
	    public Point(int x, int y) {
	        this.x = x;
	        this.y = y;
	    }
	    
	    public double getDistance(Point p) {
	        return Math.sqrt((x - p.x) * (x - p.x) + (y - p.y) * (y - p.y));
	    }
	}
}
0