結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー htensaihtensai
提出日時 2020-06-04 12:39:05
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,095 bytes
コンパイル時間 2,550 ms
コンパイル使用メモリ 80,136 KB
実行使用メモリ 159,508 KB
最終ジャッジ日時 2024-11-28 15:27:03
合計ジャッジ時間 56,975 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,732 KB
testcase_01 AC 125 ms
54,160 KB
testcase_02 AC 1,330 ms
105,768 KB
testcase_03 AC 1,693 ms
141,044 KB
testcase_04 AC 1,854 ms
150,236 KB
testcase_05 AC 1,634 ms
138,108 KB
testcase_06 AC 1,554 ms
138,632 KB
testcase_07 AC 824 ms
86,256 KB
testcase_08 AC 1,673 ms
158,956 KB
testcase_09 AC 507 ms
63,680 KB
testcase_10 AC 1,070 ms
104,652 KB
testcase_11 AC 844 ms
94,744 KB
testcase_12 AC 805 ms
81,996 KB
testcase_13 AC 1,537 ms
119,992 KB
testcase_14 AC 1,588 ms
124,672 KB
testcase_15 AC 1,715 ms
128,960 KB
testcase_16 AC 1,254 ms
99,964 KB
testcase_17 AC 1,776 ms
132,524 KB
testcase_18 AC 1,241 ms
92,632 KB
testcase_19 AC 1,842 ms
130,604 KB
testcase_20 AC 868 ms
85,092 KB
testcase_21 AC 1,278 ms
97,912 KB
testcase_22 AC 1,795 ms
126,312 KB
testcase_23 AC 248 ms
57,896 KB
testcase_24 AC 244 ms
58,548 KB
testcase_25 AC 766 ms
79,740 KB
testcase_26 AC 1,237 ms
101,704 KB
testcase_27 AC 1,361 ms
103,912 KB
testcase_28 AC 1,734 ms
128,688 KB
testcase_29 AC 653 ms
67,024 KB
testcase_30 AC 1,840 ms
130,368 KB
testcase_31 AC 1,489 ms
118,740 KB
testcase_32 AC 1,056 ms
98,132 KB
testcase_33 AC 1,724 ms
131,756 KB
testcase_34 AC 1,189 ms
94,132 KB
testcase_35 AC 1,714 ms
130,348 KB
testcase_36 AC 207 ms
57,752 KB
testcase_37 AC 233 ms
58,000 KB
testcase_38 AC 214 ms
57,952 KB
testcase_39 AC 215 ms
57,688 KB
testcase_40 AC 186 ms
56,296 KB
testcase_41 TLE -
testcase_42 AC 1,070 ms
94,916 KB
testcase_43 AC 1,379 ms
107,148 KB
testcase_44 AC 738 ms
77,908 KB
testcase_45 AC 1,573 ms
107,944 KB
testcase_46 AC 117 ms
53,912 KB
testcase_47 AC 113 ms
53,856 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<HashMap<Integer, Double>> graph = new ArrayList<>();
	    for (int i = 0; i < n; i++) {
	        points[i] = new Point(sc.nextInt(), sc.nextInt());
	        graph.add(new HashMap<>());
	    }
	    for (int i = 0; i < m; i++) {
	        int a = sc.nextInt() - 1;
	        int b = sc.nextInt() - 1;
	        double distance = points[a].getDistance(points[b]);
	        graph.get(a).put(b, distance);
	        graph.get(b).put(a, distance);
	    }
	    PriorityQueue<Path> queue = new PriorityQueue<>();
	    queue.add(new Path(x, 0));
	    boolean[] visited = new boolean[n];
	    double ans = 0;
	    while (queue.size() > 0) {
	        Path p = queue.poll();
	        if (visited[p.idx]) {
	            continue;
	        }
	        visited[p.idx] = true;
	        if (p.idx == y) {
	            ans = p.value;
	            break;
	        }
	        for (Map.Entry<Integer, Double> entry : graph.get(p.idx).entrySet()) {
	            if (!visited[entry.getKey()]) {
	                queue.add(new Path(entry.getKey(), p.value + entry.getValue()));
	            }
	        }
	    }
		System.out.println(ans);
	}
	
	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