代码拉取完成,页面将自动刷新
#include<iostream>
#include<bits/stdc++.h>
using namespace std;
class Solution {
public:
vector<int> temp;
int count = 0;
int merge_sort(vector<int>& nums,vector<int> temp,int l,int r)
{
if(l ==r) return 0;
int mid = l + r >>1;
int lc = merge_sort(nums,temp,l,mid);
int rc = merge_sort(nums,temp,mid+1,r);
int k = 0,cut = 0;
int i = l,j = mid+1;
while(i<=mid&&j<=r)
{
if(nums[i]>nums[j])
{
temp[k++] = nums[j++];
cut = cut+mid-i+1;
}else
temp[k++] = nums[i++];
}
while(i<=mid)
{
temp[k++] = nums[i++];
}
while(j<=r)
{
temp[k++] = nums[j++];
}
for(int a = l;a<=r;a++)
{
nums[a] = temp[a-1];
}
return cut+lc+rc;
}
int reversePairs(vector<int>& nums) {
temp.resize(nums.size());
return merge_sort(nums,temp,0,nums.size()-1);
}
};
int main()
{
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。