티스토리 뷰
BOJ::15683::감시
출처 : https://www.acmicpc.net/problem/15683
#include <bits/stdc++.h>
using namespace std;
int N, M, vs, a[8][8], ans,
dy[] = { -1,0,1,0 }, dx[] = { 0,1,0,-1 }, nc[6] = { 0,1,2,2,3,4 },
cc[6][4] = { {},{0},{0,2},{0,1},{0,1,3},{0,1,2,3} };
vector<pair<int, int>> v;
int cal(int vi, int res) {
if (vi == vs) return res;
int ta[8][8], tmp = 65; memcpy(ta, a, sizeof(a));
auto tp = v[vi];
for(int i=0;i<4;i++) {
int sdfsf = 1;
memcpy(a, ta, sizeof(ta)); int tr = res;
for(int j=0; j<nc[a[tp.first][tp.second]];j++) {
int jj = cc[a[tp.first][tp.second]][j];
int dd = (jj + i) % 4, ny = tp.first + dy[dd], nx = tp.second + dx[dd];
while (ny >= 0 && ny < N&&nx >= 0 && nx < M&&a[ny][nx] != 6) {
if (a[ny][nx] == 0) { a[ny][nx] = -1; tr--; }
ny += dy[dd]; nx += dx[dd];
}
}
tmp = min(tmp, cal((vi + 1),tr));
}
memcpy(a, ta, sizeof(ta));
return tmp;
}
int main() {
ios::sync_with_stdio(0); cin.tie(0); cin >> N >> M;
for(int i=0; i<N; i++) for(int j=0; j<M; j++) {
cin >> a[i][j];
if (!a[i][j]) ans++;
else if (a[i][j] != 6) v.push_back(make_pair(i, j));
} vs = v.size();
cout << cal(0,ans);
return 0;
}
'알고리즘 > BOJ' 카테고리의 다른 글
[BOJ 1103] 게임 (0) | 2018.08.26 |
---|---|
[BOJ 1937] 욕심쟁이 판다 (0) | 2018.08.26 |
[BOJ 9466] 텀 프로젝트 (0) | 2018.08.05 |
[BOJ 14890] 경사로 (0) | 2018.08.02 |
[BOJ 14503] 로봇청소기 (0) | 2018.08.02 |
- Total
- Today
- Yesterday
- boj
- 2018 KAKAO BLIND RECRUITMENT
- 입출력
- STL
- 알고리즘
- 트렌드
- 백준
- SW Expert Academy
- DP
- string
- 새로운 게임 2
- 역량 테스트
- 시간 복잡도
- 이차원 배열과 연산
- scanf
- 삼성
- 17142
- 17779
- 연구소 3
- 17837
- SWEA
- 17140
- 미세먼지 안녕!
- 17144
- 게리맨더링 2
- 17143
- hackerrank
- 2018 카카오 블라인드 채용
- DFS
- 팁
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |