[백준] 14889 : 스타트와 링크 - JAVA(자바) - 사좋배 공유
https://www.acmicpc.net/problem/14889 14889번: 스타트와 링크 예제 2의 경우에 (1, 3, 6), (2, 4, 5)로 팀을 나누면 되고, 예제 3의 경우에는 (1, 2, 4, 5), (3, 6, 7, 8)로 팀을 나누면 된다. www.acmicpc.net public class Main { static int[][] arr; static ArrayList list; static int size; static int MIN; public static void main(String[] args) { Scanner sc = new Scanner(System.in); size = sc.nextInt(); arr = new int[size + 1][size + 1]; MIN=I..