https://school.programmers.co.kr/learn/courses/30/lessons/12952
#include <string>
#include <vector>
using namespace std;
int answer;
bool isAble(int idx, int cnt, vector<int>& board) {
for (int i=0; i<cnt; i++) {
if (board[i] == idx) return false ;// 이전에 둔 퀸이 같은 수평선에 있다면
if (abs(board[i]-idx) == abs(cnt-i)) return false ;// 이전에 둔 퀸이 대각선에 있다면
// abs(board[i]-idx) / abs(cnt-i) == 1과 같이쓰면 정수의 버림에 의해 틀렸지만 통과하는
// 케이스가 생길 수 있으니 주의하자
}
return true;
}
void dfs(int cnt, int n, vector<int>& board) {
if (cnt == n) {
answer++;
return ;
}
for (int i=0; i<n; i++) {
if (isAble(i, cnt, board)) {// 퀸이 놓아질수 있는 위치라면
board[cnt] = i;// 두고
dfs(cnt+1, n, board);// dfs
}
}
}
int solution(int n) {
vector<int> board(n, 0);
dfs(0, n, board);
return answer;
}
'CodingTest > 99클럽2024스터디' 카테고리의 다른 글
99클럽 코테 스터디 25일차 TIL, 프로그래머스 / 순위 (0) | 2024.08.15 |
---|---|
99클럽 코테 스터디 21일차 TIL, 프로그래머스 / 정수 삼각형 (0) | 2024.08.11 |
99클럽 코테 스터디 15일차 TIL, 프로그래머스 / 소수찾기 (0) | 2024.08.05 |
99클럽 코테 스터디 14일차 TIL, 프로그래머스 / 징검다리 (0) | 2024.08.04 |
99클럽 코테 스터디 13일차 TIL, 프로그래머스 / 입국심사 (0) | 2024.08.03 |