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