본문 바로가기

Problem/DP

[C/C++] BOJ 11726 :: 2×n 타일링

BOJ 11726 :: 2×n 타일링



문제 링크 : https://www.acmicpc.net/problem/11726






나의 코드



Github : https://github.com/j2wooooo/Daliy_Algorithms/blob/master/Daliy_Algorithms/BOJ_11726/BOJ_11726.cpp




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 백준알고리즘 11726번 :: 2×n 타일링
#include<iostream>
using namespace std;
 
int N;
int dp[1001];
int main()
{
    cin >> N;
 
    dp[1= 1;
    dp[2= 2;
 
    for (int i = 3; i <= 1000; i++)
    {
        dp[i] = (dp[i - 2+ dp[i - 1])%10007;
    }
 
    cout << dp[N];
 
    return 0;
}
cs