求让∑(ai−bi)2的值最小的最小操作次数。
首先想如何使∑(ai−bi)2最小,这个给两个数组排序就好了,这样的话相减后的平方和一定是最小的。
那么问题就剩求最小的操作次数了。
分析样例,排完序后数组中的值不那么重要了,需要的只是其中的大小关系,于是就考虑到了离散化。
离散化后,数组 a 以数组 b 的元素为序的情况下的逆序对就是需要的最小交换次数。
#include <bits/stdc++.h>
using namespace std;
const int maxn = 500000 + 5, mod = 1e8 - 3;
int c[maxn];
int n;
struct node {
int val, th;
bool operator < (const node &k) const {
return val < k.val;
}
bool operator >= (const node &k) const {
return val >= k.val;
}
} a[maxn], b[maxn];
int lowbit(int x) {
return x & -x; }
void add(int i, int x)
{
while(i <= n) {
c[<