답안 #329974

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
329974 2020-11-23T10:17:29 Z Sho10 구경하기 (JOI13_watching) C++14
0 / 100
9 ms 11500 KB
#include <bits/stdc++.h> //Andrei Alexandru a.k.a Sho10
#define ll long long
#define double long double
#pragma GCC optimize("O3")
#pragma GCC optimize("Ofast")
#define all(a) (a).begin(), (a).end()
#define f first
#define s second
#define pb push_back
#define mp make_pair
#define pi pair
#define rc(s) return cout<<s,0
#define endl '\n'
#define mod (10*10*10*10*10*10*10*10*10+7)
#define PI 3.14159265359
#define MAXN 100005
#define INF 1000000005
#define LINF 1000000000000000005ll
#define CODE_START  ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
ll n,p,q,a[2005],dp[2005][100005];
ll check(ll x){
ll l=1,r=1;
for(ll i=1;i<=n;i++)
{
    while(a[l]<a[i]-x+1){
        l++;
    }
    while(a[r]<a[i]-2*x+1){
        r++;
    }
    for(ll j=0;j<=p;j++)
    {
        dp[i][j]=LINF;
        if(j){
            dp[i][j]=dp[l-1][j-1];
        }
        dp[i][j]=min(dp[r-1][j]+1,dp[i][j]);
    }
}
return (dp[n][p]<=q);
}
int32_t main(){
CODE_START;
cin>>n>>p>>q;
for(ll i=1;i<=n;i++)
{
    cin>>a[i];
}
ll l=1,r=1e9,res=0;
while(l<=r){
    ll mid=(l+r)/2;
    if(check(mid)){
        res=mid;
        r=mid-1;
    }else l=mid+1;
}
cout<<res<<endl;
}

# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 876 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 9 ms 11500 KB Output isn't correct
2 Halted 0 ms 0 KB -