結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー tentententen
提出日時 2020-08-20 10:35:20
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,347 bytes
コンパイル時間 2,475 ms
コンパイル使用メモリ 80,080 KB
実行使用メモリ 113,812 KB
最終ジャッジ日時 2024-10-13 03:52:25
合計ジャッジ時間 63,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,048 KB
testcase_01 AC 142 ms
54,636 KB
testcase_02 AC 1,542 ms
86,460 KB
testcase_03 AC 1,924 ms
104,416 KB
testcase_04 AC 1,967 ms
106,104 KB
testcase_05 AC 1,778 ms
103,108 KB
testcase_06 AC 1,741 ms
105,184 KB
testcase_07 AC 928 ms
72,428 KB
testcase_08 AC 1,836 ms
113,812 KB
testcase_09 AC 605 ms
61,524 KB
testcase_10 AC 1,221 ms
85,392 KB
testcase_11 AC 1,012 ms
77,352 KB
testcase_12 AC 1,172 ms
75,648 KB
testcase_13 AC 1,658 ms
88,992 KB
testcase_14 AC 1,826 ms
96,524 KB
testcase_15 AC 1,852 ms
100,100 KB
testcase_16 AC 1,415 ms
79,724 KB
testcase_17 AC 1,943 ms
102,680 KB
testcase_18 AC 1,289 ms
74,984 KB
testcase_19 AC 1,867 ms
101,212 KB
testcase_20 AC 1,110 ms
75,844 KB
testcase_21 AC 1,484 ms
78,392 KB
testcase_22 AC 1,794 ms
98,776 KB
testcase_23 AC 269 ms
58,120 KB
testcase_24 AC 289 ms
58,436 KB
testcase_25 AC 1,176 ms
73,588 KB
testcase_26 AC 1,409 ms
83,340 KB
testcase_27 AC 1,539 ms
82,876 KB
testcase_28 AC 1,850 ms
95,792 KB
testcase_29 AC 733 ms
63,968 KB
testcase_30 AC 1,910 ms
98,820 KB
testcase_31 AC 1,624 ms
87,340 KB
testcase_32 AC 1,333 ms
82,740 KB
testcase_33 AC 1,780 ms
97,652 KB
testcase_34 AC 1,287 ms
78,652 KB
testcase_35 AC 1,929 ms
100,132 KB
testcase_36 AC 231 ms
57,728 KB
testcase_37 AC 268 ms
58,160 KB
testcase_38 AC 237 ms
57,592 KB
testcase_39 AC 261 ms
57,784 KB
testcase_40 AC 213 ms
56,584 KB
testcase_41 TLE -
testcase_42 AC 1,223 ms
80,568 KB
testcase_43 AC 1,613 ms
86,460 KB
testcase_44 AC 961 ms
75,492 KB
testcase_45 AC 1,629 ms
86,224 KB
testcase_46 AC 134 ms
53,948 KB
testcase_47 AC 135 ms
53,876 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;
        ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
        Node[] nodes = new Node[n];
        for (int i = 0; i < n; i++) {
            nodes[i] = new Node(i, 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);
        }
        double[] costs = new double[n];
        Arrays.fill(costs, Double.MAX_VALUE);
        PriorityQueue<Path> queue = new PriorityQueue<>();
        queue.add(new Path(x, 0));
        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 + nodes[next].getDistance(nodes[p.idx])));
            }
        }
        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 Node {
        int idx;
        int x;
        int y;
        
        public Node(int idx, int x, int y) {
            this.idx = idx;
            this.x = x;
            this.y = y;
        }
        
        public double getDistance(Node another) {
            return Math.sqrt(Math.pow(x - another.x, 2) + Math.pow(y - another.y, 2));
        }
        
        public int hashCode() {
            return idx;
        }
        
        public boolean equals(Object o) {
            Node n = (Node)o;
            return idx == n.idx;
        }
    }
} 
0