# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
329976 |
2020-11-23T10:19:40 Z |
Sho10 |
Watching (JOI13_watching) |
C++14 |
|
634 ms |
262148 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];
}
sort(a+1,a+n+1);
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;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
876 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
4 |
Correct |
601 ms |
78700 KB |
Output is correct |
5 |
Correct |
1 ms |
876 KB |
Output is correct |
6 |
Correct |
634 ms |
78700 KB |
Output is correct |
7 |
Correct |
1 ms |
876 KB |
Output is correct |
8 |
Correct |
1 ms |
876 KB |
Output is correct |
9 |
Correct |
1 ms |
896 KB |
Output is correct |
10 |
Correct |
1 ms |
876 KB |
Output is correct |
11 |
Correct |
1 ms |
1004 KB |
Output is correct |
12 |
Correct |
1 ms |
1004 KB |
Output is correct |
13 |
Correct |
1 ms |
876 KB |
Output is correct |
14 |
Correct |
1 ms |
876 KB |
Output is correct |
15 |
Correct |
1 ms |
876 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
8 ms |
11392 KB |
Output is correct |
2 |
Correct |
1 ms |
396 KB |
Output is correct |
3 |
Correct |
197 ms |
34924 KB |
Output is correct |
4 |
Runtime error |
189 ms |
262148 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
5 |
Halted |
0 ms |
0 KB |
- |