标签:inpu logs 51nod 包括 http include space scan 空格
基准时间限制:1 秒 空间限制:131072 KB 分值: 40 难度:4级算法题
第1行:2个数N和K,中间用空格分隔。N为数组的长度,K对应第K大的数。(2 <= N <= 50000,1 <= K <= 10^9) 第2 - N + 1行:每行2个数,分别是A[i]和B[i]。(1 <= A[i],B[i] <= 10^9)
输出第K大的数。
3 2 1 2 2 3 3 4
9
#include <algorithm> #include <cstdio> typedef long long LL; using namespace std; LL cnt=0,n,k,A[50050],B[50050]; LL check(LL now) { LL ans=0; for(LL i=1;i<=n;i++) { LL l=1,r=n,num=0; while(l<=r) { LL mid=(l+r)>>1; if(A[i]*B[mid]<now) num=mid,l=mid+1; else r=mid-1; } ans+=num; } return ans<k?1:0; } int main() { scanf("%lld%lld",&n,&k);k=(n*n)-k+1; for(LL i=1;i<=n;i++) scanf("%lld%lld",&A[i],&B[i]); sort(A+1,A+1+n); sort(B+1,B+1+n); LL mid,ans; LL l=A[1]*B[1],r=A[n]*B[n]; while(l<=r) { mid=(l+r)>>1; if(check(mid)) ans=mid,l=mid+1; else r=mid-1; } printf("%lld",ans); return 0; }
标签:inpu logs 51nod 包括 http include space scan 空格
原文地址:http://www.cnblogs.com/ruojisun/p/6691151.html