1012 유기농 배추1 [백준 1012] 유기농 배추 출처 : https://www.acmicpc.net/problem/1012 메인 메소드 static int[] nX = {-1, 0, 1, 0};//DFS때 사용하기 위한 (다음 배열 위치) nX, nY 배열 static int[] nY = {0, -1, 0, 1}; static int[][] checker; // 방문했는지 아닌지 체킹용 배열 public static void main(String[] args) throws IOException{ Q1012 t = new Q1012(); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.read.. 2019. 1. 25. 이전 1 다음