#include<bits/stdc++.h>
#define F first
#define S second
#define pb push_back
#define int long long
using namespace std;
const int N=1e6,M=2e3;
int a[100005],b[100005];
main()
{
int n,m;
cin>>n>>m;
map<int,int>mp;
for(int i=0;i<n;i++)
cin>>a[i];
for(int i=0;i<n;i++)
cin>>b[i];
for(int i=0;i<n;i++)
mp[a[i]-b[i]]++;
int neg=0,pos=0;
for(auto x:mp){
if(x.F<=0)
neg+=x.S;
else pos+=x.S;
}
int ans=0,anss=1e18;
for(int i=0;i<n;i++)
ans+=abs(a[i]-b[i]);
anss=min(abs(ans),anss);
for(int j=-3e6;j>=-1;j--){
ans-=pos;
ans+=neg;
anss=min(anss,abs(ans));
neg+=mp[-j];
pos-=mp[-j];
if(mp[-j]==0)
mp.erase(-j);
}
ans=0,pos=0,neg=0;
for(int i=0;i<n;i++)
ans+=abs(a[i]-b[i]);
for(auto x:mp)
if(x.F<0)
neg+=x.S;
else pos+=x.S;
for(int j=1;j<=3e6;j++){
ans-=neg;
ans+=pos;
anss=min(anss,abs(ans));
neg-=mp[-j];
pos+=mp[-j];
if(mp[-j]==0)
mp.erase(-j);
}
cout<<anss<<endl;
return 0;
}
Compilation message
simfonija.cpp:10:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
10 | main()
| ^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
181 ms |
284 KB |
Output is correct |
2 |
Correct |
187 ms |
284 KB |
Output is correct |
3 |
Incorrect |
229 ms |
292 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
338 ms |
2508 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
471 ms |
2468 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
354 ms |
2508 KB |
Output is correct |
2 |
Correct |
323 ms |
1892 KB |
Output is correct |
3 |
Incorrect |
287 ms |
1844 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
214 ms |
1844 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
445 ms |
4492 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
267 ms |
1844 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
400 ms |
4500 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
409 ms |
2160 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
261 ms |
1848 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |