Submission #597241

#TimeUsernameProblemLanguageResultExecution timeMemory
597241definitelynotmeePeru (RMI20_peru)C++17
0 / 100
1 ms340 KiB
#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); vector<int> maxrange(n+1); dp[0] = 0; for(int i = 1; i <= n; i++){ for(int j = i-1; j >= max(i-k,0); j--){ maxrange[j] = max(maxrange[j],v[j]); dp[i] = min(dp[i],maxrange[j]+dp[j]); } } ll resp = 0; ll power = 1; for(int i = n; i > 0; i--){ resp+=dp[i]%MOD*power; power*=23; power%=MOD; resp%=MOD; } return resp; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...