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
- 다이나믹 프로그래밍
- 수학
- 재귀
- 알고리즘
- 누적 합
- 백트래킹
- BFS
- c++
- 그리디 알고리즘
- VR
- 문자열
- ue5
- 스택
- 다익스트라
- Unreal Engine 5
- 투 포인터
- 브루트포스
- 우선순위 큐
- 정렬
- XR Interaction Toolkit
- 시뮬레이션
- Team Fortress 2
- 자료구조
- 트리
- 구현
- 유니티
- 유니온 파인드
- 그래프
- DFS
- 백준
Archives
- Today
- Total
목록킹 C++ (1)
1일1알

명령에 따라 직접 움직여보면서 문제를 해결하였다. #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; int dRow[8] = { -1,-1, 0, 1, 1, 1, 0,-1 }; int dCol[8] = { 0, 1, 1, 1, 0,-1,-1,-1 }; string GetNextPos(const string &str, const string &moveStr) { string nextPos = ""; if (moveStr == "T") { nextPos += ..
알고리즘
2022. 4. 11. 10:59