Advertisement
Guest User

Untitled

a guest
May 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. import java.util.*;
  2. import java.io.*;
  3.  
  4. public class superbull {
  5. public static void main(String[] args) throws Exception {
  6. Scanner in = new Scanner(new File("superbull.in"));
  7. PrintWriter out = new PrintWriter(new File("superbull.out"));
  8. int N = in.nextInt();
  9. PriorityQueue<Edge> disjoint = new PriorityQueue<>();
  10. for (int i = 0; i < N; i++) {
  11.  
  12. }
  13. in.close();
  14. out.close();
  15. }
  16. }
  17.  
  18. public class Edge implements Comparatable {
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement