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
- 알고리즘
- 자료구조
- Unreal Engine 5
- 우선순위 큐
- ue5
- c++
- 유니티
- DFS
- 정렬
- 투 포인터
- 트리
- 스택
- 브루트포스
- 백준
- 백트래킹
- 누적 합
- 그리디 알고리즘
- 다익스트라
- 문자열
- BFS
- 재귀
- 수학
- 구현
- 시뮬레이션
- VR
- 유니온 파인드
- 다이나믹 프로그래밍
- Team Fortress 2
- XR Interaction Toolkit
- 그래프
Archives
- Today
- Total
목록백준 8911 C++ (1)
1일1알
백준 8911번 거북이 C++
https://www.acmicpc.net/problem/8911 8911번: 거북이 첫째 줄에 테스트 케이스의 개수 T가 주어진다. 각 테스트 케이스는 한 줄로 이루어져 있고, 컨트롤 프로그램이 주어진다. 프로그램은 항상 문제의 설명에 나와있는 네가지 명령으로만 이루어져 www.acmicpc.net 구현, 시뮬레이션 #include #include #include #include #include #include #include using namespace std; int dRow[4] = { -1,0,1,0 }; int dCol[4] = { 0,1,0,-1 }; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullp..
알고리즘
2022. 11. 16. 13:02