답안 #155446

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
155446 2019-09-28T07:11:54 Z kungfulon 구경하기 (JOI13_watching) C++14
0 / 100
9 ms 8444 KB
#include <bits/stdc++.h>
#define rep(i,a,b) for(int i = (a);i <= (b);i++)
#define repd(i,a,b) for(int i = (a);i >= (b);i--)
#define PB push_back
#define F first
#define S second
#define Task "watching"
using namespace std;
template <class T> T read(T &a){a = 0;char c = cin.get();bool nega = 0;while(!isdigit(c) && c != '-') c = cin.get();if(c == '-') nega = 1,c = cin.get();a = c - 48;c = cin.get();while(isdigit(c)) a = a * 10 + c - 48,c = cin.get();if(nega) a = -a;return a;}
template <class T> void writep(T a){if(a > 9) writep(a / 10);cout.put(a % 10 + 48);}
template <class T> void write(T a){if(a < 0) cout.put('-'),a = -a;writep(a);cout.put(' ');}
template <class T> void writeln(T a){write(a);cout.put('\n');}
const int N = 2012;
int n,p,q;
int dp[N][N],a[N];
bool check(int w)
{
    if(n <= p + q) return 1;
    int lq = 0,lp = 0;
    rep(i,1,n)
    {
        while(a[i] - a[lp] >= w && lp < i) lp++;
        while(a[i] - a[lq] >= w*2 && lq < i) lq++;
        rep(j,0,p)
        {
            dp[i][j] = dp[max(0,lq-1)][j] + 1;
            if(j)dp[i][j] = min(dp[i][j],dp[max(0,lp-1)][j-1]);
        }
    }
    rep(i,0,p) if(dp[n][i] <= q) return 1;
    return 0;
}
int main()
{
	ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
//	ifstream cin (Task".inp");
//	ofstream cout (Task".out");
    cin >> n >> p >> q;
    rep(i,1,n) cin >> a[i];
    sort(a+1,a+n+1);
    int l = 0,r = 107;
    while(r - l > 1)
    {
        int mid = (l + r)/2;
        if(check(mid)) r = mid;
        else l = mid;
    }
    cout << r;
	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 760 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 9 ms 8444 KB Output isn't correct
2 Halted 0 ms 0 KB -