Submission #596686

# Submission time Handle Problem Language Result Execution time Memory
596686 2022-07-15T01:23:40 Z definitelynotmee Peru (RMI20_peru) C++17
0 / 100
1 ms 340 KB
#include "peru.h"
#include<bits/stdc++.h>
#define ff first
#define ss second
#define all(x) x.begin(), x.end()
using namespace std;
using ll = long long;
using pii = pair<int,int>;
using pll = pair<ll,ll>;
template<typename T>
using matrix = vector<vector<T>>;
const ll INFL = 1ll<<60;
const int MOD = 1e9+7;

int solve(int n, int k, int* v){

    vector<ll> dp(n+1,INFL);
    dp[0] = 0;
    for(int i = 1; i <= n; i++){
        int maxrange = 0;
        for(int j = i-1; j >= max(i-k,0); j--){
            maxrange = max(maxrange,v[j]);
            dp[i] = min(dp[i],maxrange+dp[j]);
        }
    }

    ll resp = 0;
    ll power = 1;
    for(int i = n; i > 0; i--){
        resp+=power*dp[i];
        power*=23;
        power%=MOD;
        resp%=MOD;
    }
    
    return resp;
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 340 KB Output is correct
2 Incorrect 1 ms 340 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 340 KB Output is correct
2 Incorrect 1 ms 340 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 340 KB Output is correct
2 Incorrect 1 ms 340 KB Output isn't correct
3 Halted 0 ms 0 KB -