import java.util.ArrayList;import java.util.Collections;import java.util.Scanner; class Edge{ private int from; private int to; private int weight; public Edge(){ } public Edge(int from, int to, int weight) { this.from = from; this.to = to; this.weight = weight; } public int ...