# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
226351 | emil_physmath | K blocks (IZhO14_blocks) | C++17 | 500 ms | 57832 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;
int dp[101][100'000];
int main()
{
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int n, k;
cin >> n >> k;
vector<int> a(n);
for (int i = 0; i < n; ++i)
cin >> a[i];
dp[1][0] = a[0];
for (int j = 2; j <= k; ++j)
dp[j][0] = 1000'000 * k + 1;
vector<int> st;
vector<vector<int>> dpst(k + 1, vector<int>(1, 0));
for (int i = 1; i < n; ++i)
{
auto it = upper_bound(st.rbegin(), st.rend(), i, [&a](int i, int j){ return a[i] < a[j]; });
int stm = (it == st.rend() ? -1 : *it);
for (int j = 1; j <= k; ++j)
{
if (j == 1)
dp[1][i] = max(dp[1][i - 1], a[i]);
else
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |