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 | 31 |
Tags
- mysqld.sock
- 자료구조 목차
- 탄막 스킬 범위
- 유니티
- c#
- 회의실 배정
- 강의실2
- 그리디알고리즘
- 3344
- 2020 KAKAO BLIND RECRUITMENT
- AI Hub
- 영상 프레임 추출
- 원형
- 백준
- 우분투
- MySQL
- 수 만들기
- 알고리즘 목차
- 문자열 압축
- 탄막
- SWEA
- 알고리즘
- 18249
- 단어 수학
- 윈도우
- 걷는건귀찮아
- 토글 그룹
- 3273
- 탄막 이동
- 마우스 따라다니기
Archives
- Today
- Total
와이유스토리
[DFS 2번(단순, 백트래킹)] 백준 캐슬 디펜스 17135 C++ 본문
https://www.acmicpc.net/problem/17135
#include <bits/stdc++.h>
using namespace std;
int n, m, d, ans, board[17][17];
bool shoot(int x, int y, int copyBoard[][17]) { // 궁수 위치 (x, y)
for (int i = 1; i <= d; i++) {
for (int j = 1; j <= i; j++) { // (i-j)가 커야 왼쪽부터
int newX = x - (i - j);
int newY = y - j;
if ((newX <= 0) | (newY <= 0)) continue; // 0 이하
if (copyBoard[newY][newX]) {
if (board[newY][newX]) {
board[newY][newX] = 0;
return 1;
}
return 0;
}
}
for (int j = i; j > 0; j--) { // (i-j)가 작아야 왼쪽부터
int newX = x + (i - j);
int newY = y - j;
if ((newX > m) | (newY <= 0)) continue;
if (copyBoard[newY][newX]) {
if (board[newY][newX]) {
board[newY][newX] = 0;
return 1;
}
return 0;
}
}
}
return 0;
}
void cal(int arrow, int depth, int val) {
bool flag = true;
for (int i = 1; i < depth; i++) {
for (int j = 1; j <= m; j++) {
if (board[i][j]) flag = false;
}
}
if ((depth == 1) || (flag)) {
ans = max(ans, val);
return;
}
int copyBoard[17][17];
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
copyBoard[i][j] = board[i][j];
}
}
int cnt = 0;
for (int i = 1; i <= m; i++) {
if ((arrow & (1 << i)) != (1 << i)) continue;
if (shoot(i, depth, copyBoard)) cnt++;
if (cnt == 3) break;
}
cal(arrow, depth - 1, val + cnt);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
board[i][j] = copyBoard[i][j];
}
}
}
void dfs(int arrow, int start) {
if (start > m) return;
int cnt = 0;
for (int i = 1; i <= m; i++) {
if ((arrow & (1 << i)) == (1 << i)) cnt++;
}
if (cnt == 3) {
cal(arrow, n + 1, 0);
return;
}
for (int i = start + 1; i <= m; i++) {
if ((arrow & (1 << i)) == (1 << i)) continue;
int temp = (arrow | (1 << i));
dfs(temp, i);
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> n >> m >> d;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
cin >> board[i][j];
}
}
dfs(0, 0);
cout << ans;
}
※ BFS, DFS 이용 풀이
#include <bits/stdc++.h>
using namespace std;
int n, m, d, ans, board[17][17];
int dx[3] = { -1, 0, 1 };
int dy[3] = { 0, -1, 0 };
bool visited[17][17];
struct Info {
int x, y, dist;
};
queue<Info> q;
Info info;
void findClosest(int newX, int newY, int dist) {
if ((info.dist != -1) && (dist > info.dist)) return;
if ((info.x == -1) || (newX < info.x)) {
info.x = newX;
info.y = newY;
info.dist = dist;
}
}
bool shoot(int x, int y, int copyBoard[][17]) { // 궁수 위치 (x, y)
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
visited[i][j] = false;
}
}
q.push({ x,y,1 });
visited[y][x] = true;
info = { -1, -1, -1 };
while (!q.empty()) {
int popX = q.front().x;
int popY = q.front().y;
int dist = q.front().dist;
q.pop(); // 먼저 빼기
if (dist > d) continue;
if (copyBoard[popY][popX]) findClosest(popX, popY, dist);
for (int i = 0; i < 3; i++) {
int newX = popX + dx[i];
int newY = popY + dy[i];
if ((newX == 0) || (newY == 0) || (newX > m)) continue;
if (visited[newY][newX]) continue;
visited[newY][newX] = true;
q.push({ newX, newY, dist + 1 });
}
}
if ((info.x == -1) || (board[info.y][info.x]) == 0) return 0;
else {
board[info.y][info.x] = 0;
return 1;
}
}
void cal(int arrow, int depth, int val) {
bool flag = true;
for (int i = 1; i < depth; i++) {
for (int j = 1; j <= m; j++) {
if (board[i][j]) flag = false;
}
}
if ((depth == 1) || (flag)) {
ans = max(ans, val);
return;
}
int copyBoard[17][17]; // 지역 변수로 선언
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
copyBoard[i][j] = board[i][j];
}
}
int cnt = 0;
for (int i = 1; i <= m; i++) {
if ((arrow & (1 << i)) != (1 << i)) continue;
if (shoot(i, depth - 1, copyBoard)) cnt++;
if (cnt == 3) break;
}
cal(arrow, depth - 1, val + cnt);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
board[i][j] = copyBoard[i][j];
}
}
}
void dfs(int arrow, int start) {
if (start > m) return;
int cnt = 0;
for (int i = 1; i <= m; i++) {
if ((arrow & (1 << i)) == (1 << i)) cnt++;
}
if (cnt == 3) {
cal(arrow, n + 1, 0);
return;
}
for (int i = start + 1; i <= m; i++) {
if ((arrow & (1 << i)) == (1 << i)) continue;
int temp = (arrow | (1 << i));
dfs(temp, i);
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> n >> m >> d;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
cin >> board[i][j];
}
}
dfs(0, 0);
cout << ans;
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS 순열] 백준 17281 ⚾(야구) C++ (0) | 2022.02.03 |
---|---|
[DFS 순열/DFS 반복(조합, 순열)] 프로그래머스 불량 사용자 C++ (0) | 2022.02.02 |
[DFS 중복순열] 백준 17070 파이프 옮기기1 C++ (0) | 2022.02.02 |
[DFS 순열] SWEA 1768 숫자 야구 게임 C++ (0) | 2022.01.31 |
[DFS 단순] 백준 16637 괄호 추가하기 C++ (0) | 2022.01.31 |
Comments