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; Node[] nodes = new Node[n]; for (int i = 0; i < n; i++) { nodes[i] = new Node(i, sc.nextInt(), sc.nextInt()); } HashMap> graph = new HashMap<>(); for (int i = 0; i < m; i++) { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; if (!graph.containsKey(nodes[a])) { graph.put(nodes[a], new ArrayList<>()); } graph.get(nodes[a]).add(nodes[b]); if (!graph.containsKey(nodes[b])) { graph.put(nodes[b], new ArrayList<>()); } graph.get(nodes[b]).add(nodes[a]); } double[] costs = new double[n]; Arrays.fill(costs, Double.MAX_VALUE); PriorityQueue queue = new PriorityQueue<>(); queue.add(new Path(nodes[x], 0)); while (queue.size() > 0) { Path p = queue.poll(); if (costs[p.node.idx] <= p.value) { continue; } costs[p.node.idx] = p.value; for (Node nd : graph.get(p.node)) { queue.add(new Path(nd, p.value + p.node.getDistance(nd))); } } System.out.println(costs[y]); } static class Path implements Comparable { Node node; double value; public Path(Node node, double value) { this.node = node; 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; } } }