# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
96079 | Alexa2001 | 구경하기 (JOI13_watching) | C++17 | 97 ms | 15976 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... |