#include <bits/stdc++.h>
using namespace::std;
long long a[100005],b[100005],s[100005],n,k,i,ans=LLONG_MAX;
vector <int> v;
long long resi(int l,int d,int x){
int p=lower_bound(v.begin(),v.end(),x)-v.begin();
p--;
long long res;
res+=(p-l+1)*x;
res-=s[p+1]-s[l];
p=upper_bound(v.begin(),v.end(),x)-v.begin();
res+=s[d+1]-s[p];
res-=x*(d-p+1);
return res;
}
int main(){
std::ios_base::sync_with_stdio(0);
cin>>n>>k;
for(i=0;i<n;i++) cin>>a[i];
for(i=0;i<n;i++) {cin>>b[i]; v.push_back(2*(a[i]-b[i]));}
sort(v.begin(),v.end());
s[0]=0;
for(i=1;i<=n;i++) s[i]=s[i-1]+v[i-1];
for(i=0;i<k+1;i++){
int x,m,d;
d=n-k-1;
if(i>0){
x=(v[i-1]+v[d])/2;
ans=min(ans,resi(i,d,x));
}
if(d<n-1){
x=(v[d+1]+v[i])/2;
ans=min(ans,resi(i,d,x));
}
m=(i+d)/2;
ans=min(ans,resi(i,d,v[m]));
}
cout<<ans/2<<endl;
return 0;
}
Compilation message
simfonija.cpp: In function 'long long int resi(int, int, int)':
simfonija.cpp:12:4: warning: 'res' is used uninitialized in this function [-Wuninitialized]
res+=(p-l+1)*x;
~~~^~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Correct |
3 ms |
384 KB |
Output is correct |
3 |
Correct |
2 ms |
384 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
53 ms |
3288 KB |
Output is correct |
2 |
Correct |
55 ms |
3320 KB |
Output is correct |
3 |
Correct |
40 ms |
3316 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
36 ms |
3316 KB |
Output is correct |
2 |
Correct |
39 ms |
3376 KB |
Output is correct |
3 |
Correct |
41 ms |
3340 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
36 ms |
3360 KB |
Output is correct |
2 |
Correct |
39 ms |
3444 KB |
Output is correct |
3 |
Correct |
34 ms |
3316 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
40 ms |
3316 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
40 ms |
3316 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
45 ms |
3324 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
47 ms |
3352 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
45 ms |
3316 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
52 ms |
3320 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |