반응형 96631 [ 알고리즘 ]코딩 백준 9663 - N-Queen - 1차원배열을 이용해서 구현.java 백준 9663 - N-Queen * 자바로 구현 * 1차원 배열로 짜는 방법. * 이렇게 깔끔하게 짤 수 있게 열심히 공부해야겠다 public class BOJ_9663_Queen { static int N; static int[] sel; static int totalCnt; public static void main(String[] args) { Scanner sc = new Scanner(System.in); N = sc.nextInt(); sel = new int[N+1]; setQueens(1); // 1열부터 시작 System.out.println(totalCnt); } // 퀸을 현재(row) 행에 놓기 public static void setQueens(int row) { if(row > .. 2020. 9. 5. 이전 1 다음 반응형