import java.util.*;public class BJ1260 { static boolean[] visited; // 방문 여부를 체크할 배열 static ArrayList[] graph; // 인접 리스트로 그래프를 표현 public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); // 노드의 개수 int M = sc.nextInt(); // 간선의 개수 int V = sc.nextInt(); // 탐색을 시작할 정점의 번호 graph = new ArrayList[N + 1]; // 정점 번호는 1번부..