본문 바로가기

백준

11726 2×n 타일링

 

재귀로는 풀었다!

 

보면 1*2 사각형은 무조건 두 개가 올 수 있으니깐 1*2를 둘 것인지 아니면 2*1을 둘 것인지 계산한 다음

 

마지막이 0으로 딱 떨어지면 count를 세준다.

 

문제는 입력값이 1000이라 메모이제이션을 사용해야 한다는 것인데...

 

으음 방법이 안 떠오른다. 느낌상 n이 5일 때, 4일 때 횟수를 미리 저장한 다음 활용하면 좋을 것 같은데 횟수.. 으음...


하지만 생각해냈습니다~~~~~~!!!!

 

꺄울

 

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <functional>
#include <string>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <cmath>
#include <cstring>
#include <bitset>

#define xx first
#define yy second
#define all(x) (x).begin(), (x).end()
#define MOD 10007

using namespace std;
using i64 = long long int;
using ii = pair<int, int>;
using ii64 = pair<i64, i64>;
using iii = tuple<int, int, int>;

int cache[1005];
int ans;

int func(int n)
{
    if (n == 0)
    {
        return 1;
    }

    if (cache[n] != -1)
        return cache[n];

    int a = 0, b = 0;
    if (n >= 2)
        a = func(n - 2);
    b = func(n - 1);

    return cache[n] = a % MOD + b % MOD;
}

int     main()
{
    int n;
    scanf("%d", &n);

    memset(cache, -1, sizeof(cache));
    func(n);
    printf("%d\n", cache[n] % MOD);

    return 0;
}

'백준' 카테고리의 다른 글

10844 쉬운 계단 수  (0) 2020.10.15
11727 2×n 타일링 2  (0) 2020.10.15
1463 1로 만들기  (0) 2020.10.15
13164 행복 유치원  (0) 2020.10.13
13116 30번  (0) 2020.10.13