일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 마법의숲탐색
- ARM
- 루돌프의반란
- 구현
- 이진탐색
- DP
- dfs
- DenseDepth
- 포탑부수기
- 나무박멸
- 토끼와 경주
- 코드트리
- 슈퍼컴퓨터클러스터
- 3Dreconstruction
- 왕실의기사대결
- 수영대회결승전
- BFS
- 소프티어
- 마이크로프로세서
- 순서대로방문하기
- ICER
- 조합
- 싸움땅
- 코드트리빵
- ISER
- Calibration
- 삼성기출
- 백준
- 시뮬레이션
- ros
Archives
- Today
- Total
from palette import colorful_colors
[백준] 15683 감시 with C++ (삼성기출) 본문
https://www.acmicpc.net/problem/15683
언어: C++, 시간: 12ms
완전탐색으로 재귀 돌면서 모두 체크하기!
CCTV별 방향은 따로 2중 벡터 배열로 만들어서 코드 수와 실수를 줄이도록 유도했다.
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
struct Node
{
int y;
int x;
};
struct cctv{
int y;
int x;
int num;
};
int dy[4] = { -1, 1, 0, 0 };
int dx[4] = { 0, 0, -1, 1 };
int N, M, unVisibleCnt, answer;
int MAP[9][9];
vector <cctv> cctvList;
vector <vector <int>> directionList[6] = {
{{}},
{{0}, {1}, {2}, {3}},
{{0, 1}, {2, 3}},
{{0, 3},{1, 3},{1, 2}, {0, 2}},
{{0, 2, 3}, {0, 1, 3}, {1, 2, 3}, {0, 1, 2}},
{{0, 1, 2, 3}}
};
void input() {
cin >> N >> M;
unVisibleCnt = N * M;
for (int i = 0; i < N; i++){
for (int j = 0; j < M; j++){
cin >> MAP[i][j];
if (MAP[i][j] > 0) {
unVisibleCnt--;
if (MAP[i][j] < 6)
cctvList.push_back({i,j,MAP[i][j]});
}
}
}
}
void func(int level, int unVisibleCnt) {
// 기저조건
if (level == cctvList.size()) {
answer = min(unVisibleCnt, answer);
return;
}
// 해당 CCTV의 방향 목록 가짓수마다
cctv curCctv = cctvList[level];
vector<vector <int>> curDirList = directionList[curCctv.num];
for (int i = 0; i < curDirList.size(); i++)
{
int visibleCnt = 0;
vector <Node> visibleList;
int baseY = curCctv.y;
int baseX = curCctv.x;
// 해당 방향 목록의 각 방향마다
for (int j = 0; j < curDirList[i].size(); j++) {
int curDir = curDirList[i][j];
int curY = baseY;
int curX = baseX;
while (1)
{
int ny = curY + dy[curDir];
int nx = curX + dx[curDir];
if (ny < 0 || nx < 0 || ny >= N || nx >= M) // 범위 밖
break;
if (MAP[ny][nx] == 6) // 벽 만날때
break;
if (MAP[ny][nx] != 0) { // 다른 cctv나 이미 본 곳일때
curY = ny;
curX = nx;
continue;
}
MAP[ny][nx] = -1;
visibleList.push_back({ ny, nx });
visibleCnt ++;
curY = ny;
curX = nx;
}
}
// 재귀 타기
func(level + 1, unVisibleCnt - visibleCnt);
// 복구
for (auto curCctv : visibleList) {
MAP[curCctv.y][curCctv.x] = 0;
}
}
}
void solve() {
answer = 21e8;
func(0, unVisibleCnt);
}
int main() {
//freopen("sample_input.txt", "r", stdin);
cin.tie(NULL);
cout.tie(NULL);
ios::sync_with_stdio(false);
input();
solve();
cout << answer;
return 0;
}
'알고리즘 > 문제풀이' 카테고리의 다른 글
[백준] 15684 사다리조작 with C++ (삼성기출) (0) | 2024.04.01 |
---|---|
[백준] 14502 연구소 with C++ (삼성기출) (0) | 2024.03.31 |
[SWEA] 1949 등산로 조성 with C++ (0) | 2024.03.03 |
[SWEA] 3234 준환이의 양팔저울 with C++ (0) | 2024.03.03 |
[백준] 16236 아기상어 with C++ (0) | 2024.02.22 |