public class CharacterTree{ public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int[] num = new int[n - 1]; int[] ans = new int[n]; ArrayList<Integer>[] nm = new ArrayList[n]; for(int ...