import java.util.*;public class Main { static class Edge { public long to , weight; public Edge(long to, long weight) { this.to = to; this.weight = weight; } } static class Info { public long idx , weight; public Info(long idx, long weight) { this.idx = idx; this.weight = weight; } } static int N..