일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- extends
- 보안취약점
- IMPLEMENT
- Android
- bytecode
- 심리학
- Interface
- opcode
- 일상탈출
- 치유
- Navigation Component
- 여행계획
- jvm
- 회피
- static
- 심리여행
- Transition
- ㅇ
- bytecode 분석
- 보안
- Recylcer
- 버킷리스트
- 취약점
- 일상회피
- javap
- HelloWorld
- Shared Elements
- abstract
- throws
- 여행
Archives
- Today
- Total
패스트터틀
(Baekjoon) backtracking - (2) N-Queen 본문
https://www.acmicpc.net/problem/9663
0.0 -> 0.1 -> 0.2 -> 0.3
순으로 아랫부분을 추적한다.
isPossible로 검사를 하여서 dfs를 하면서
돌아오면서 backtracking한다.
주석처리를 풀면은 각 과정을 확인해볼수있다.
package backtracking;
import java.util.Scanner;
public class _9963 {
static int N;
static Scanner sc = new Scanner(System.in);
static int num=0;
static int count;
static int xy[][];
public static void dfs(int start) {
if (start == N-1) {
// for (int i = 0; i < N; i++) {
// for (int j = 0; j < 2; j++) {
// System.out.print("결과 : " + xy[i][j]+" ");
// }
// System.out.println();
// }
// System.out.println();
num++;
} else {
for (int i = 0; i < N; i++) {
if(isPossible(start+1,i) == true ){
xy[start+1][0] = start+1;
xy[start+1][1] = i;
dfs(start+1); // 검사가 true면
} // 들어가서 3,4행검사
}
}
}
public static boolean isPossible(int a,int b) {
//xy검사
for (int i = 0; i < a; i++) {
if(xy[i][1] == b) // 같은 열에 있다면
return false;
if(Math.abs(xy[i][0] - a) == Math.abs(xy[i][1] - b)){ // 대각선이라면
return false;
}
}
// System.out.println("통과 : " + a+" "+b);
return true;
}
public static void main(String args[]) {
N = sc.nextInt();
xy = new int[N][2];
for (int i = 0; i < N; i++) {
count = 0;
xy[0][0] = 0;
xy[0][1] = i;
// System.out.println("시작 : " + xy[0][0]+" "+xy[0][1]);
dfs(0);
}
System.out.println(num);
}
}
백준문제풀이Github :
https://github.com/sdk0213/baekjoon-study
'Algorithm > baekjoon' 카테고리의 다른 글
(Baekjoon) GreedyAlgorithm - (13) 행렬 (0) | 2019.11.19 |
---|---|
(Baekjoon) GreedyAlgorithm - (12) 부등호 (0) | 2019.11.17 |
(Baekjoon) backtracking - (1) 로또 (0) | 2019.11.15 |
(Baekjoon) dfs,bfs - (1) dfs,bfs (0) | 2019.11.13 |
(Baekjoon) GreedyAlgorithm - (11) 기타줄 (0) | 2019.11.10 |
Comments