티스토리 뷰

백준

백준 소스코드 [C++] 11727 2xN 타일링 2

Hani_Levenshtein 2020. 8. 19. 21:07

https://www.acmicpc.net/problem/11727

 

11727번: 2×n 타일링 2

2×n 직사각형을 1×2, 2×1과 2×2 타일로 채우는 방법의 수를 구하는 프로그램을 작성하시오. 아래 그림은 2×17 직사각형을 채운 한가지 예이다.

www.acmicpc.net

백준 소스코드 [C++] 11727 2xN 타일링 2

#include <iostream>
#include <utility>
#include <vector>
#include <algorithm>
using namespace std;
int memo[1001];
int tiling(int n) {
	if (n == 1) return 1;
	else if (n == 2) return 3;
	if (memo[n] != 0) return memo[n];
	else return memo[n] = (tiling(n - 1) + 2*tiling(n - 2))%10007;
}

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	int n;
	cin >> n;
	cout << tiling(n);
	return 0;
}
댓글