| 6 | // construction of the graph |
| 7 | public class Main { |
| 8 | static class Edge { |
| 9 | int src; |
| 10 | int nbr; |
| 11 | int wt; |
| 12 | |
| 13 | Edge(int src, int nbr, int wt) { |
| 14 | this.src = src; |
| 15 | this.nbr = nbr; |
| 16 | this.wt = wt; |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | public static class Pair implements Comparable<Pair>{ |
| 21 | int vtx ; |
nothing calls this directly
no outgoing calls
no test coverage detected