博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数组中的逆序对
阅读量:6069 次
发布时间:2019-06-20

本文共 1978 字,大约阅读时间需要 6 分钟。

题目描述

在数组中的两个数字,如果前面一个数字大于后面的数字,则这两个数字组成一个逆序对。输入一个数组,求出这个数组中的逆序对的总数P。并将P对1000000007取模的结果输出。 即输出P%1000000007

输入描述:

题目保证输入的数组中没有的相同的数字

数据范围:

对于%50的数据,size<=10^4

对于%75的数据,size<=10^5

对于%100的数据,size<=2*10^5

示例1

输入

1,2,3,4,5,6,7,0

输出

7
1 public class Solution { 2     public static int InversePairs(int [] array) { 3         if(array==null||array.length==0) 4         { 5             return 0; 6         } 7         int[] copy = new int[array.length]; 8         for(int i=0;i
>1;23 int leftCount = InversePairsCore(array,copy,low,mid)%1000000007;24 int rightCount = InversePairsCore(array,copy,mid+1,high)%1000000007;25 int count = 0;26 int i=mid;27 int j=high;28 int locCopy = high;29 while(i>=low&&j>mid)30 {31 if(array[i]>array[j])32 {33 count += j-mid;34 copy[locCopy--] = array[i--];35 if(count>=1000000007)//数值过大求余36 {37 count%=1000000007;38 }39 }40 else41 {42 copy[locCopy--] = array[j--];43 }44 }45 for(;i>=low;i--)46 {47 copy[locCopy--]=array[i];48 }49 for(;j>mid;j--)50 {51 copy[locCopy--]=array[j];52 }53 for(int s=low;s<=high;s++)54 {55 array[s] = copy[s];56 }57 return (leftCount+rightCount+count)%1000000007;58 }59 60 public static void main (String[] args) throws java.lang.Exception61 {62 int[] array={4,3,2,1};63 64 //System.out.println(InversePairs(array));65 System.out.println(2519);66 System.out.println(24903408);67 System.out.println(493330277);68 System.out.println(988418660);69 }70 71 }

 

转载于:https://www.cnblogs.com/Octopus-22/p/9496384.html

你可能感兴趣的文章
django.contrib.auth登陆注销学习
查看>>
js执行本地exe文件的3种方法
查看>>
理解B树索引
查看>>
vi编辑器的命令集合
查看>>
Mysql利用binlog恢复数据
查看>>
解决 Windows启动时要求验证
查看>>
我的友情链接
查看>>
用yum安装mariadb
查看>>
一点IT"边缘化"的人的思考
查看>>
Gallery循环滑动
查看>>
Sql与C#中日期格式转换总结
查看>>
iOS开发流程总结
查看>>
hadoop datanode 启动出错
查看>>
js颜色拾取器
查看>>
IDEA使用(1)intellIJ idea 配置 svn
查看>>
Thread Safety in Java(java中的线程安全)
查看>>
WPF 降低.net framework到4.0
查看>>
数据管理DMS 全量SQL诊断:你的SQL是健康的蓝色,还是危险的红色?
查看>>
搭建一个通用的脚手架
查看>>
开年巨制!千人千面回放技术让你“看到”Flutter用户侧问题
查看>>