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

처음에 bfs로 마네킹때문에 못가는 곳을 찾고 시루가 의자를 찾아서 가는 경로를 bfs로 찾았다. #include #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[4] = { -1,0,1,0 }; int dCol[4] = { 0,1,0,-1 }; struct Info { int row; int col; int moveCnt; }; int n, m, k; vector board; vector found;..
알고리즘
2022. 9. 17. 10:52