Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 머신러닝
- 웹페이지 만들기
- lob
- C언어
- BOJ Python
- 백준
- 숙명여자대학교 정보보안 동아리
- c++
- Python
- The Loard of BOF
- c
- XSS Game
- 숙명여자대학교 정보보안동아리
- 드림핵
- 생활코딩
- SWEA
- CSS
- 자료구조 복습
- Sookmyung Information Security Study
- 풀이
- HTML
- WarGame
- 파이썬
- Javascript
- 기계학습
- hackctf
- siss
- PHP 웹페이지 만들기
- BOJ
- hackerrank
Archives
- Today
- Total
목록9663번 (1)
혜랑's STORY
[BOJ_C++] 9663번 : N-Queen
code #define _CRT_SECURE_NO_WARNINGS #include #include #include using namespace std; int n, cnt = 0; int list[15]; void N_Queen(int x) { bool flag; if (x == n) cnt++; else { for (int i = 0; i < n; i++) { list[x] = i; flag = true; for (int j = 0; j < x; j++) { if (list[x] == list[j] || abs(list[x] - list[j]) == (x - j)) { flag = false; break; } } if (flag) N_Queen(x + 1); } } } int main() { ios_b..
무지성 공부방/알고리즘 해결
2021. 8. 18. 12:12