티스토리 뷰

 


[BOJ 1780(S2) 리뷰]

 

SIZE와 x,y좌표를 이용해 풀었다.

같은 값이 아닐경우 크기를 계속 줄어나가며 재귀함수를 호출했다.


 

#include <iostream>
#include <queue>
#include <string>
#include <string.h>
#include <math.h>
using namespace std;
int table[2300][2300];
int n;
int a=0, b=0, c=0;
int check(int size,int x, int y)
{
	int Cur = table[x][y];
	for (int i = x; i < x+size; i++)
	{
		for (int j = y; j < y+size; j++)
		{
			if (table[i][j] != Cur) //같은모양이 아님
				return -100;
		}
	}

	return Cur; //같은모양임
}


void func(int size,int x,int y)
{
	int cur = check(size, x, y);
	if (cur != -100) 
	{
		if (cur == -1) a++;
		else if (cur == 0) b++;
		else if (cur == 1) c++;
		return;
	}

	func(size / 3, x, y);
	func(size / 3, x + size / 3, y);
	func(size / 3, x + size / 3*2, y);
	func(size / 3, x , y+size/3);
	func(size / 3, x , y+size/3*2);
	func(size / 3, x + size / 3, y+size/3);
	func(size / 3, x + size / 3, y + size / 3*2);
	func(size / 3, x + size / 3*2, y + size / 3 );
	func(size / 3, x + size / 3 * 2, y + size / 3 * 2);


}


int main(void)
{
	cin.tie(0);
	ios::sync_with_stdio(0);
	memset(table, ' ', sizeof(table));
	cin >> n;
	for (int i = 0; i < n; i++)
	{
		for (int j = 0; j < n; j++)
		{
			cin >> table[i][j];
		}
	}
	func(n, 0, 0);
	cout << a << '\n';
	cout << b << '\n';
	cout << c << '\n';
	
}



 

'알고리즘 풀이 > 재귀' 카테고리의 다른 글

프로그래머스 : 124 나라의 숫자  (0) 2021.01.26
BOJ : 1992 쿼드트리  (0) 2020.08.06
BOJ : 2447 별 찍기-10  (0) 2020.08.06
BOJ 1629 : 곱셈  (0) 2020.08.06
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
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
글 보관함