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

bfs문제인데, 고슴도치의 이동과 물의 이동을 따로 관리해주어야 한다. 그리고 고슴도치는 물이 찰 예정인 칸으로 이동할 수 없다고 했기 때문에 처음에 물이 먼저 이동을 해야한다. 그래서 물을 먼저 큐에 넣어주었다. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; int r, c; int dRow[4] = { -1,0,1,0 }; int dCol[4] = { 0,1,0,-1 }; enum Type { Hedgehog, ..
알고리즘
2022. 8. 10. 09:04