# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1118074 | cpdreamer | Watching (JOI13_watching) | C++17 | 1002 ms | 6376 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;
typedef long long ll;
#define P pair
#define S second
#define F first
#define all(v) v.begin(),v.end()
#define V vector
#define pb push_back
const ll MOD=998244353;
void file() {
freopen("input.txt.txt", "r", stdin);
freopen("output.txt.txt", "w", stdout);
}
void setIO(string s = "") {
if (!s.empty()){
freopen((s + ".in").c_str(), "r", stdin);
freopen((s + ".out").c_str(), "w", stdout);
}
ios::sync_with_stdio(false);
cin.tie(0);
}
long long intersection(const std::pair<long long, long long>& interval1,
const std::pair<long long, long long>& interval2) {
long long start = std::max(interval1.first, interval2.first);
long long end = std::min(interval1.second, interval2.second);
if (start <= end) {
return end - start + 1;
}
return 0;
}
int find(int A[],int n,int right,int v){
int ans=-1;
if(v<A[1])
return 0;
int l=1,r=right;
while(l<=r){
int m=l+(r-l)/2;
if(A[m]<=v){
ans=m;
l=m+1;
}
else
r=m-1;
}
if(ans==-1)
return 0;
return ans;
}
void solve() {
int n,p,q;
cin>>n>>p>>q;
int A[n+1];
for(int i=1;i<=n;i++)
cin>>A[i];
if(p+q>=n){
cout<<1<<endl;
return;
}
sort(A+1,A+n+1);
int l=1,r=1e9;
int ans=-1;
while(l<=r){
int m=l+(r-l)/2;
int w=m;
int dp[n+1][q+1];
memset(dp,0,sizeof(dp));
for(int i=1;i<=n;i++){
for(int j=0;j<=q;j++){
dp[i][j]=1e9;
int last=find(A,n,i-1,A[i]-w);
dp[i][j]=min(dp[i][j],dp[last][j]+1);
if(j>=1){
last=find(A,n,i-1,A[i]-2*w);
dp[i][j]=min(dp[i][j],dp[last][j-1]);
}
}
}
if(dp[n][q]<=p){
ans=w;
r=m-1;
}
else
l=m+1;
}
cout<<ans<<endl;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
//file();
solve();
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |