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
- 오블완
- 1563
- RootMotion
- softeer
- Frustum
- Unreal Engine5
- 2294
- UE5
- DeferredRendering
- algorithm
- directx
- NRVO
- 팰린드롬 만들기
- C
- DirectX11
- 백준
- RVO
- const
- Programmers
- GeeksForGeeks
- baekjoon
- 티스토리챌린지
- IFileDialog
- UnrealEngine4
- C++
- 프로그래머스
- winapi
- 줄 세우기
- UnrealEngine5
- 언리얼엔진5
Archives
- Today
- Total
목록9663 (1)
Game Develop
[Algorithm] Baekjoon 9663번 : N-Queen
https://www.acmicpc.net/problem/9663 9663번: N-Queen N-Queen 문제는 크기가 N × N인 체스판 위에 퀸 N개를 서로 공격할 수 없게 놓는 문제이다. N이 주어졌을 때, 퀸을 놓는 방법의 수를 구하는 프로그램을 작성하시오. www.acmicpc.net 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 int queensCol[16]; // queensCol[row] -> row에 위치한 열위치. int targetCount = 0; int result = 0; ..
Algorithm/Baekjoon
2022. 10. 14. 22:16