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
- 회의실 배정
- 강의실2
- 원형
- 그리디알고리즘
- 3273
- 윈도우
- 자료구조 목차
- 토글 그룹
- 탄막
- 수 만들기
- 2020 KAKAO BLIND RECRUITMENT
- 영상 프레임 추출
- MySQL
- 우분투
- 18249
- 단어 수학
- 마우스 따라다니기
- 알고리즘
- 탄막 이동
- 탄막 스킬 범위
- c#
- SWEA
- 걷는건귀찮아
- 3344
- 알고리즘 목차
- mysqld.sock
- AI Hub
- 유니티
- 문자열 압축
- 백준
Archives
- Today
- Total
와이유스토리
[DFS 백트래킹] 백준 17136 색종이 붙이기 C++ 본문
https://www.acmicpc.net/problem/17136
#include <iostream>
#include <cstring>
#include <limits.h>
using namespace std;
int ans = INT_MAX;
int paper[10][10];
int cnt[5] = { 5,5,5,5,5 };
bool check(int x, int y, int idx) {
if (((x + idx) > 10) || ((y + idx) > 10)) return false;
for (int i = y; i < y + idx; i++) {
for (int j = x; j < x + idx; j++) {
if (paper[i][j] == 0) return false;
}
}
return true;
}
void make(int x, int y, int idx, int val) {
for (int i = y; i < y + idx; i++) {
for (int j = x; j < x + idx; j++) paper[i][j] = val;
}
}
void dfs(int x, int y, int depth) {
if (y == 10) return; // y만 리턴
if (x == 10) x = 0;
int newx = -1, newy = -1;
for (int i = y; i < 10; i++) { // for문 위치 조심(dfs 안에 for문 필요-색종이 상태 다 다름)
for (int j = x; j < 10; j++) {
if (paper[i][j] == 0) continue;
else {
newx = j; newy = i; // 새 변수 만들기
break;
}
}
if (newx != -1) break;
x = 0;
}
if (ans <= depth) return; // 시간 단축
if (newx == -1) { // 종료 조건 조심
ans = min(ans, depth);
return;
}
for (int k = 5; k > 0; k--) {
if (cnt[k - 1] == 0) continue; // return 아님
if (check(newx, newy, k) == true) {
// 색종이 상태 바꾸기
make(newx, newy, k, 0);
cnt[k - 1]--; // k(X), k-1(O)
dfs(newx + k, newy, depth + 1);
make(newx, newy, k, 1);
cnt[k - 1]++;
}
}
}
int main() {
memset(paper, 0, sizeof(paper));
for (int i = 0; i < 10; i++) {
for (int j = 0; j < 10; j++) cin >> paper[i][j];
}
dfs(0, 0, 0);
if (ans == INT_MAX) ans = -1;
cout << ans;
return 0;
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS 백트래킹] 백준 15684 사다리 조작 C++ (0) | 2022.01.22 |
---|---|
[DFS 단순 반복, BFS 반복, 크루스칼] 백준 17472 다리 만들기2 C++ (0) | 2022.01.22 |
[그래프(프림)] (CHECK) 프로그래머스 섬 연결하기 C++ (0) | 2022.01.22 |
[그래프(크루스칼)] 프로그래머스 섬 연결하기 C++ (0) | 2022.01.22 |
[BFS 반복] 백준 16263번 아기 상어 C++ (0) | 2022.01.21 |
Comments