15822022-11-28 10:40:43zsebiJárda-L (40)cpp11Runtime error 36/403ms3408 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
SubtaskSumTestVerdictTimeMemory
base36/40
1Accepted0/03ms1808 KiB
2Accepted0/02ms2060 KiB
3Runtime error0/22ms2224 KiB
4Runtime error0/22ms2416 KiB
5Accepted2/22ms2444 KiB
6Accepted2/22ms2500 KiB
7Accepted2/22ms2632 KiB
8Accepted3/32ms2624 KiB
9Accepted3/32ms2716 KiB
10Accepted3/32ms2960 KiB
11Accepted3/32ms2996 KiB
12Accepted3/32ms3120 KiB
13Accepted3/32ms3204 KiB
14Accepted3/32ms3324 KiB
15Accepted3/32ms3400 KiB
16Accepted3/32ms3404 KiB
17Accepted3/32ms3408 KiB