이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#include "peru.h"
#ifdef MINA
#include "grader.cpp"
#endif
using namespace std;
#define ll long long
const int N = 2'500'005, mod = 1e9 + 7;
const ll inf = 1e18;
ll dp[N], a[N];
int solve(int n, int k, int *v) {
for (int i = 0; i < n; i++) {
a[i + 1] = v[i];
}
for (int i = 1; i <= n; i++) {
dp[i] = inf;
ll c = 0;
for (int j = i; j > max(0, i - k); j--) {
c = max(c, a[j]);
dp[i] = min(dp[i], dp[j - 1] + c);
}
}
int ans = 0;
ll pw = 1;
for (int i = n; i >= 1; i--) {
ans += pw * dp[i] % mod;
ans %= mod;
pw = pw * 23 % mod;
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |