# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
30042 | samir_droubi | Watching (JOI13_watching) | C++14 | 613 ms | 17744 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n,p,q;
const int mxn=2005;
int dp[mxn][mxn];
int a[mxn];
int l[mxn];
int l2[mxn];
int calc(int i,int u)
{
if(dp[i][u] != -1) return dp[i][u];
if( u > p )return (1e9);
if(i == 0 ) return 0;
int ans = calc( l[i] - 1 , u + 1 );
ans = min(ans , 1 + calc( l2[i] - 1 , u ) );
return dp[i][u] = ans;
}
bool check(int w)
{
memset(dp,-1,sizeof dp);
l[0] = 1;
l2[0] = 1;
for(int i = 1; i <= n ; ++i)
{
l[i] = l[i - 1];
l2[i] = l2[i - 1];
while(a[i] - a[ l[i] ] + 1 > w) ++l[i];
while(a[i] - a[ l2[i] ] + 1 > 2*w) ++l2[i];
}
return calc( n , 0 ) <= q;
}
void bs()
{
int l=1;
int r=(1e9);
int ans=-1;
while( l <= r )
{
int md = ( l + r ) / 2;
if( check( md ) )r = md - 1 , ans = md;
else l = md + 1;
}
printf("%d\n",ans);
}
int main()
{
scanf("%d%d%d",&n,&p,&q);
for(int i = 1 ; i <= n ; ++i )
scanf("%d",&a[i]);
sort( a + 1 , a + n + 1 );
bs();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |