Submission #399324

# Submission time Handle Problem Language Result Execution time Memory
399324 2021-05-05T15:05:05 Z rocks03 Peru (RMI20_peru) C++14
0 / 100
1 ms 340 KB
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define ff first
#define ss second
#define pb push_back
#define SZ(x) ((int)(x).size())
#define all(x) x.begin(), x.end()
#define debug(x) cout << #x << ": " << x << " "
#define nl cout << "\n"
#define rep(i, a, b) for(int i = (a); i < (b); i++)
#define per(i, a, b) for(int i = (a); i >= (b); i--)
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());

const int M = 1e9 + 7;

int solve(int N, int K, int* a){
    vector<ll> dp(N + 1, LLONG_MAX);
    dp[0] = 0;
    rep(i, 1, N + 1){
        int mx = 0;
        per(j, i, max(1, i - K + 1)){
            mx = max(mx, a[j - 1]);
            dp[i] = min(dp[i], dp[j - 1] + mx);
        }
    }
    vector<ll> pt(N + 1);
    pt[N] = 1;
    per(i, N - 1, 1){
        pt[i] = (pt[i + 1] * 23ll) % M;
    }
    ll ans = 0;
    rep(i, 1, N + 1){
        ans += (dp[i] * pt[i]) % M;
        ans %= M;
    }
    return ans;
}
# 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 -