본문 바로가기
algorithm/brute force

boj 9663 N-Queen

by iskull 2020. 12. 18.
728x90

유명한 브루트포스 문제이다. 체스의 퀸이 갈 수 있는 경로 중 수직으로 위, 아래의 경로를 제외하고 모든 경로에 대해 검사를 하면서 경우의 수를 검사하면 된다.

github.com/skullkim/algorithm/blob/master/boj/brute_force/9663.cpp

 

skullkim/algorithm

Contribute to skullkim/algorithm development by creating an account on GitHub.

github.com

 

'algorithm > brute force' 카테고리의 다른 글

boj 6603  (0) 2021.02.25
boj 15658  (0) 2021.02.13
boj 14500  (0) 2021.02.11
boj 1107  (0) 2021.02.10
boj 2309  (0) 2021.02.07