https://www.acmicpc.net/problem/15686 *M개의 조합 구하기 > bfs 백트래킹으로 구현//백준 연습import java.util.*;import java.io.*;public class Main { static int N, M; static int[][] city; static class Node{ int x, y; // 좌표값 public Node(int x, int y) { this.x = x; this.y = y; } } // 집, 치킨 집 저장할 리스트 static ArrayList house_list = new ArrayList(); static ArrayList chicken_list = new ArrayList(); // 결과 저장 stat..