import java.util.*;public class BJ15663 { static int N, M; static int[] Narr; static boolean[] visited; static List sequence; static Set resultSet; public static void main(String[] args) { Scanner sc = new Scanner(System.in); N = sc.nextInt(); M = sc.nextInt(); Narr = new int[N]; visited = new boolean[N]; sequence = new ArrayList(); ..