boj 13023 java
-
boj)13023 - ABCDEPS/boj 2020. 10. 29. 15:44
import java.util.*; class Edge { int from, to; Edge(int from, int to) { this.from = from; this.to = to; } } public class boj_13023{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); // 사람의 수 int m = sc.nextInt(); // 관계의 수 boolean[][] a = new boolean[n][n]; // 인접행렬 ArrayList[] g = (ArrayList[]) new ArrayList[n]; // 인접리스트 ArrayList edges = new Arra..