# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
597242 | definitelynotmee | Peru (RMI20_peru) | C++17 | 744 ms | 5120 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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+=dp[i]%MOD*power;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |