import java.util.*; class Visitor implements Comparable<Visitor> { int id; int time; public Visitor(int id, int time) { this.id = id; this.time = time; } @Override public int compareTo(Visitor other) { return Integer.compare(this.time, other.t...