public class Main { static int n, m, v; // 정점, 간선, 시작점 static ArrayList[] al; static boolean visited[]; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer stz = new StringTokenizer(br.readLine()); n = Integer.parseInt(stz.nextToken()); m = Integer.parseInt(stz.nextToken()); v = Integer.parseInt(stz.n..