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 |
Tags
- 브루트포스
- 유니티
- 다익스트라
- 백준
- 그래프
- 알고리즘
- c++
- DFS
- 수학
- 그리디 알고리즘
- 트리
- 문자열
- BFS
- 유니온 파인드
- 자료구조
- 재귀
- 투 포인터
- 스택
- VR
- 정렬
- 백트래킹
- 시뮬레이션
- 누적 합
- 우선순위 큐
- ue5
- 다이나믹 프로그래밍
- Team Fortress 2
- XR Interaction Toolkit
- 구현
- Unreal Engine 5
Archives
- Today
- Total
목록체스 C++ (1)
1일1알
백준 1986번 체스 C++
https://www.acmicpc.net/problem/1986 1986번: 체스 첫째 줄에는 체스 판의 크기 n과 m이 주어진다. (1 ≤ n, m ≤ 1000) 그리고 둘째 줄에는 Queen의 개수와 그 개수만큼의 Queen의 위치가 입력된다. 그리고 마찬가지로 셋째 줄에는 Knight의 개수와 위치, www.acmicpc.net #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; int dRow_Q[8] = { -..
알고리즘
2023. 6. 1. 11:11