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
- Team Fortress 2
- 구현
- 유니온 파인드
- 브루트포스
- 투 포인터
- 그리디 알고리즘
- 유니티
- c++
- 정렬
- 자료구조
- 다익스트라
- 재귀
- Unreal Engine 5
- 알고리즘
- 백트래킹
- BFS
- 시뮬레이션
- DFS
- VR
- 누적 합
- 문자열
- 스택
- 트리
- 백준
- 그래프
- 수학
- XR Interaction Toolkit
- 다이나믹 프로그래밍
- 우선순위 큐
- ue5
Archives
- Today
- Total
1일1알
백준 1189번 컴백홈 C++ 본문
백트래킹을 이용하였다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using ll = long long;
int r, c, k;
int ans = 0;
pair<int, int> start, target;
int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
vector<vector<char>> board(5, vector<char>(5));
vector<vector<bool>> visited(5, vector<bool>(5, false));
void BT(int dist, pair<int, int> curr) {
if (dist >= k) {
if (curr == target) ans++;
return;
}
if (visited[target.first][target.second]) return;
for (int i = 0; i < 4; i++) {
int nextRow = curr.first + dRow[i];
int nextCol = curr.second + dCol[i];
if (nextRow < 0 || nextRow >= r) continue;
if (nextCol < 0 || nextCol >= c) continue;
if (board[nextRow][nextCol] == 'T') continue;
if (visited[nextRow][nextCol]) continue;
visited[nextRow][nextCol] = true;
BT(dist + 1, { nextRow,nextCol });
visited[nextRow][nextCol] = false;
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> r >> c >> k;
for (int i = 0; i < r; i++) {
for (int j = 0; j < c; j++) {
cin >> board[i][j];
}
}
start = { r - 1,0 };
target = { 0,c - 1 };
visited[start.first][start.second] = true;
BT(1, start);
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 2573번 빙산 C++ (0) | 2022.05.30 |
---|---|
백준 2644번 촌수계산 C++ (0) | 2022.05.29 |
백준 2193번 이친수 C++ (0) | 2022.05.26 |
백준 17144번 미세먼지 안녕! C++ (0) | 2022.05.25 |
백준 1655번 가운데를 말해요 C++ (0) | 2022.05.24 |