Submission #485723

#TimeUsernameProblemLanguageResultExecution timeMemory
485723blueDischarging (NOI20_discharging)C++17
36 / 100
1099 ms16072 KiB
#include <iostream>
#include <vector>
using namespace std;

using ll = long long;
using vll = vector<ll>;

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    int N;
    cin >> N;

    vll t(1+N);
    t[0] = 0;
    for(int i = 1; i <= N; i++) cin >> t[i];

    vll dp(1+N+1, 1'000'000'000'000'000'000LL);
    dp[N+1] = 0;

    for(int i = N; i >= 1; i--)
    {
        ll curr_max = 0;
        for(int j = i+1; j <= N+1; j++)
        {
            curr_max = max(curr_max, t[j-1]);
            dp[i] = min(dp[i], dp[j] + curr_max * (N - (i - 1)));
        }
    }
    // for(int i = 1; i <= N; i++)
    // {
    //     ll curr_max = 0;
    //     for(int j = i-1; j >= 0; j--)
    //     {
    //         curr_max = max(curr_max, t[j+1]);
    //         dp[i] = min(dp[i], dp[j] + curr_max * (N - j));
    //     }
    // }

    cout << dp[1] << '\n';
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...