본문 바로가기
Algorithm/C++

[백준 2630] 색종이 만들기

by imagineer_jinny 2022. 9. 8.

2630번: 색종이 만들기 (acmicpc.net)

 

2630번: 색종이 만들기

첫째 줄에는 전체 종이의 한 변의 길이 N이 주어져 있다. N은 2, 4, 8, 16, 32, 64, 128 중 하나이다. 색종이의 각 가로줄의 정사각형칸들의 색이 윗줄부터 차례로 둘째 줄부터 마지막 줄까지 주어진다.

www.acmicpc.net

 

전 문제랑 똑같음

그냥 외우기

 

정답 코드

// Authored by : haneulkimdev
// Co-authored by : -
// http://boj.kr/844f77ac02c84f889eeb69a5cf7d652b
#include <bits/stdc++.h>
using namespace std;

int paper[128][128];
int ans[2];

bool chk(int n, int x, int y) {
  for (int i = x; i < x + n; i++)
    for (int j = y; j < y + n; j++)
      if (paper[i][j] != paper[x][y]) return false;
  return true;
}

void func(int n, int x, int y) {
  if (chk(n, x, y)) {
    ans[paper[x][y]]++;
    return;
  }
  for (int i = 0; i < 2; i++)
    for (int j = 0; j < 2; j++) func(n / 2, x + i * n / 2, y + j * n / 2);
}

int main(void) {
  ios::sync_with_stdio(0);
  cin.tie(0);
  int n;
  cin >> n;
  for (int i = 0; i < n; i++)
    for (int j = 0; j < n; j++) cin >> paper[i][j];
  func(n, 0, 0);
  for (int i = 0; i < 2; i++) cout << ans[i] << '\n';
}

'Algorithm > C++' 카테고리의 다른 글

[백준 11728] 배열 합치기  (0) 2022.09.13
[백준 1992] 쿼드트리  (0) 2022.09.10
[백준 1780] 종이의 개수  (0) 2022.09.08
[백준 17478] 재귀함수가 뭔가요?  (0) 2022.09.07
[백준 1074] Z  (0) 2022.09.07

댓글