博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj3579_查找第k大是数_用两次二分
阅读量:5284 次
发布时间:2019-06-14

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

Median
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 9602   Accepted: 3350

Description

Given N numbers, X1X2, ... , XN, let us calculate the difference of every pair of numbers: ∣Xi - Xj∣ (1 ≤ i  j  N). We can get C(N,2) differences through this work, and now your task is to find the median of the differences as quickly as you can!

Note in this problem, the median is defined as the (m/2)-th  smallest number if m,the amount of the differences, is even. For example, you have to find the third smallest one in the case of = 6.

Input

The input consists of several test cases.

In each test case, N will be given in the first line. Then N numbers are given, representing X1X2, ... , XN, ( X≤ 1,000,000,000  3 ≤ N ≤ 1,00,000 )

Output

For each test case, output the median in a separate line.

Sample Input

41 3 2 431 10 2

Sample Output

18

题意

给你n个数,然后求它们两两相减的绝对值,然后找出这些绝对值的中中位数。 解题思路:

  1. 先对n个数排序,那么最后的结果ans一定满足0<=ans<an-a1
  2. 第二如何判断ans就是我们需要求的值能,我们用二分进行逼近。l=0,r=an-a1,mid=(l+r)/2;
  3. 二分如何逼近呢,如何判断我们要求的答案ans是在[l,mid]还是在[mid,r]部分呢?
  4. 很明显是原数组两个数相减的绝对值<mid个数,和>mid的个数进行比较。(绝对值的个数<mid,ans在[mid,r]区间,否则在[l,mid]区间内
  5. 如何判段两数绝对值<mid的个数呢?
  6. 如何求一个数减去a[0]的值小于mid的个数,我们找到一个a[i]>=a[0]+mid时最小的一个i,那么数组[0,i)值减去a[0],都小于mid,这样枚举i就可以求得两数相减差值小于mid的个数。
  7. #include 
    #include
    #include
    #include
    using namespace std;const int MAXN=1000005;int val[MAXN];int N,M;bool calc(int mid){ int sum=0; //这儿如何计算绝对值
    =M;}int main(){ while(scanf("%d",&N)!=EOF){ for(int i=0;i
    1){ int mid=(l+r)>>1; if(calc(mid)) r=mid; else l=mid; } cout<
    <

      

#include 
#include
using namespace std;const int maxn = 1111111;int n;int x[maxn];long long m;bool C(int mid) { long long cnt = 0; for(int i = 0; i < n; i++) cnt += x+n-lower_bound(x+i+1, x+n, x[i]+mid); return cnt <= m/2; //等于号是因为,cnt计算的是比mid大的个数}int main() { while(~scanf("%d", &n)) { for(int i = 0; i < n; i++) scanf("%d", &x[i]); sort(x, x+n); m = n*(n-1)/2; //新数列的个数就是C_N_2(组合数),N是原数列的个数 int L = 0, R = *max_element(x, x+n); while(R-L > 1) { int mid = (L+R)/2; if(C(mid)) R = mid; else L = mid; } printf("%d\n", L); } return 0;}

  

#include
#include
#include
using namespace std;int n,num[100010],k,mi;int divi(int pos){ int l=1,r=pos-1,mid; while(l<=r) { mid=(l+r)/2; if(num[pos]-num[mid]<=mi) r=mid-1; else l=mid+1; } return l;}bool solve(){ int ans=0,i; for(i=2;i<=n;i++) ans+=i-divi(i); if(ans>=k) return true; else return false;}int main(){ int i,j,l,r,ans; while(~scanf("%d",&n)) { for(i=1;i<=n;i++) scanf("%d",&num[i]); sort(num+1,num+1+n); k=n*(n-1)/2; if(k%2==0) k/=2; else k=(k+1)/2; l=1;r=1000000000; while(l<=r) { mi=(l+r)/2; if(solve()) r=mi-1; else l=mi+1; } printf("%d\n",l); }}

  

转载于:https://www.cnblogs.com/passion-sky/p/9018444.html

你可能感兴趣的文章
iOS 项目的编译速度提高
查看>>
table中checkbox选择多行
查看>>
Magento开发文档(三):Magento控制器
查看>>
性能调优攻略
查看>>
ie6解决png图片透明问题
查看>>
瞬间的永恒
查看>>
2019-8-5 考试总结
查看>>
JS中实现字符串和数组的相互转化
查看>>
web service和ejb的区别
查看>>
Windows Azure Cloud Service (29) 在Windows Azure发送邮件(下)
查看>>
微信上传素材返回 '{"errcode":41005,"errmsg":"media data missing"}',php5.6返回
查看>>
div或者p标签单行和多行超出显示省略号
查看>>
Elasticsearch 滚动重启 必读
查看>>
Hadoop基本概念
查看>>
java.util.zip压缩打包文件总结一:压缩文件及文件下面的文件夹
查看>>
浅说 apache setenvif_module模块
查看>>
MySQL--数据插入
查看>>
重新学习python系列(二)? WTF?
查看>>
shell脚本统计文件中单词的个数
查看>>
SPCE061A学习笔记
查看>>