# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
96079 | Alexa2001 | Watching (JOI13_watching) | C++17 | 97 ms | 15976 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 <bits/stdc++.h>
using namespace std;
const int Nmax = 2005, inf = 1e9;
int N, P, Q, n;
int A[Nmax], a[Nmax], dp[Nmax][Nmax];
bool check(int W)
{
int i, j = 1, k = 1, it;
for(i=1; i<=N; ++i)
{
while(W - 1 < A[i] - A[j]) ++j;
while(2*W - 1 < A[i] - A[k]) ++k;
for(it=0; it<=i && it<=P; ++it)
dp[i][it] = min( (it != 0 ? dp[j-1][it-1] : inf), dp[k-1][it] + 1);
for(; it<=P; ++it) dp[i][it] = inf;
}
return (dp[N][P] <= Q);
}
int main()
{
// freopen("input", "r", stdin);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |