1582 2022. 11. 28 10:40:43 zsebi Járda-L (40) cpp11 Futási hiba 36/40 3ms 3408 KiB
// jarda-L.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <queue>

#define ll long long
using namespace std;

ll n;
int main()
{
    cin >> n;
    vector<ll>dp(n + 1, 0);
    dp[0] = 1;
    dp[1] = 1;
    dp[2] = 2;
    dp[3] = 5;
    if (n <= 3)
    {
        cout << dp[n];
        return 0;
    }
    for (int i = 4; i <= n; ++i)
    {
        dp[i] = dp[i - 1] + dp[i - 2];
        int j = i - 3;
        while (j>=0)
        {
            dp[i] += 2 * dp[j];
            --j;
        }
    }
   //for (auto& e : dp)cout << e << " ";
    cout << dp[n];
    return 0;
}

// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
Részfeladat Összpont Teszt Verdikt Idő Memória
base 36/40
1 Elfogadva 0/0 3ms 1808 KiB
2 Elfogadva 0/0 2ms 2060 KiB
3 Futási hiba 0/2 2ms 2224 KiB
4 Futási hiba 0/2 2ms 2416 KiB
5 Elfogadva 2/2 2ms 2444 KiB
6 Elfogadva 2/2 2ms 2500 KiB
7 Elfogadva 2/2 2ms 2632 KiB
8 Elfogadva 3/3 2ms 2624 KiB
9 Elfogadva 3/3 2ms 2716 KiB
10 Elfogadva 3/3 2ms 2960 KiB
11 Elfogadva 3/3 2ms 2996 KiB
12 Elfogadva 3/3 2ms 3120 KiB
13 Elfogadva 3/3 2ms 3204 KiB
14 Elfogadva 3/3 2ms 3324 KiB
15 Elfogadva 3/3 2ms 3400 KiB
16 Elfogadva 3/3 2ms 3404 KiB
17 Elfogadva 3/3 2ms 3408 KiB