BOJ2630
BOJ2630. 색종이 만들기
문제
코드
#include <bits/stdc++.h>
using namespace std;
int arr[129][129];
int white, blue;
void solve(int y, int x, int size)
{
int check = arr[y][x];
for (int i = y; i < y + size; i++)
{
for (int j = x; j < x + size; j++)
{
if (check == 0 && arr[i][j] == 1)
{
check = 2;
}
else if (check == 1 && arr[i][j] == 0)
{
check = 2;
}
if (check == 2)
{
solve(y, x, size / 2);
solve(y, x + size / 2, size / 2);
solve(y + size / 2, x, size / 2);
solve(y + size / 2, x + size / 2, size / 2);
return;
}
}
}
check == 0 ? white++ : blue++;
}
int main(int argc, char const *argv[])
{
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int n;
cin >> n;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
cin >> arr[i][j];
}
}
solve(0, 0, n);
cout << white << endl;
cout << blue << endl;
return 0;
}
분할정복, 재귀문제라고 해서
배열에서 분할정복할 경우 범위(사이즈), 체크를 꼭 해주어야겠다.
Author And Source
이 문제에 관하여(BOJ2630), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@aksel26/BOJ2630저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)