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
- 스택
- 정렬
- 자료구조
- 우선순위 큐
- 알고리즘
- c++
- 누적 합
- 투 포인터
- 시뮬레이션
- 구현
- 그래프
- XR Interaction Toolkit
- ue5
- VR
- 수학
- Team Fortress 2
- 문자열
- 백준
- BFS
- 트리
- 다이나믹 프로그래밍
- 유니티
- 브루트포스
- 그리디 알고리즘
- 재귀
- 다익스트라
- 백트래킹
- DFS
- 유니온 파인드
Archives
- Today
- Total
1일1알
백준 18428번 감시 피하기 C++ 본문
백트래킹을 이용하여 빈 칸에 3개의 장애물을 놓는 모든 경우를 만들고
각각의 경우마다 배열을 검사하면서 하나의 경우라도 선생님의 감시를 피할 수 있다면 YES, 하나도 피할 수 없다면 NO를 출력하도록 구현하였다.
#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>
using namespace std;
typedef long long ll;
int n;
char arr[6][6];
bool isPossible = false;
int posR[4] = { -1,0,1,0 };
int posC[4] = { 0,1,0,-1 };
bool IsMeet() {
bool isMeet = false;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (arr[i][j] == 'S') {
for (int k = 0; k < 4; k++) {
int nextRow = i;
int nextCol = j;
while (true) {
nextRow += posR[k];
nextCol += posC[k];
if (nextRow < 0 || nextRow >= n) break;
if (nextCol < 0 || nextCol >= n) break;
if (arr[nextRow][nextCol] == 'O') break;
if (arr[nextRow][nextCol] == 'T') {
isMeet = true;
return isMeet;
}
}
}
}
}
}
return isMeet;
}
void BT(int start, int cnt) {
if (isPossible) return;
if (cnt == 3) {
if (!IsMeet()) isPossible = true;
return;
}
for (int i = start; i < n * n; i++) {
int row = i / n;
int col = i % n;
if (arr[row][col] == 'X') {
arr[row][col] = 'O';
BT(i + 1, cnt + 1);
arr[row][col] = 'X';
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> arr[i][j];
}
}
BT(0, 0);
if (isPossible) {
cout << "YES";
}
else {
cout << "NO";
}
};
'알고리즘' 카테고리의 다른 글
백준 4883번 삼각 그래프 C++ (0) | 2021.11.29 |
---|---|
백준 2138번 전구와 스위치 C++ (0) | 2021.11.28 |
백준 1303번 전쟁-전투 C++ (0) | 2021.11.26 |
백준 14716번 현수막 C++ (0) | 2021.11.25 |
백준 15989번 1, 2, 3 더하기 4 C++ (0) | 2021.11.24 |