Poj 3685(經典二分)

來源:互聯網
上載者:User
Matrix
Time Limit: 6000MS   Memory Limit: 65536K
Total Submissions: 4150   Accepted: 1007

Description

Given a N × N matrix A, whose element in the i-th row andj-th column
Aij is an number that equals i2 + 100000 ×i +
j2 - 100000 × j + i × j, you are to find theM-th smallest element in the matrix.

Input

The first line of input is the number of test case.
For each test case there is only one line contains two integers, N(1 ≤
N
≤ 50,000) and M(1 ≤ MN × N). There is a blank line before each test case.

Output

For each test case output the answer on a single line.

Sample Input

121 12 12 22 32 43 13 23 83 95 15 255 10

Sample Output

3-99993312100007-199987-99993100019200013-399969400031-99939

Source

POJ Founder Monthly Contest – 2008.08.31, windy7926778

題目意思是給出一個矩陣,這個矩陣中各個元素的值由給定的公式確定。即:i2 + 100000 ×i +
j2 - 100000 × j + i × j。開始打了個10*10的表,以為矩陣元素得大小順序是有規律的,交了後wa了,發現還是不能亂搞。從該式子可以看出,結果隨著i單調遞增,但對j呢?求導後可發現不是單調遞增的,所以找規律就是錯的。求第k大元素嘛,還是考慮二分。二分的關鍵是怎麼去判斷。因為j無單調性可言,那麼就枚舉j,二分找出每列的小於mid的個數cntx,和小於等於mid的個數cnty。總複雜度就是logINF*n*logn,是可以接受的。然後根據相應邏輯判斷即可。這道題,就是二分裡再套二分,還是蠻有意思的。

#include<cstdio>#include<cstring>#include<vector>#include<cmath>#include<queue>#include<iostream>#include<map>using namespace std;typedef long long LL;const int maxn = 1000 + 5;const LL INF = 1LL<<40;LL n,m;LL cal(LL i,LL j){    return  i*i + 100000 * i + j*j - 100000 * j + i * j;}int can(LL x){    LL cntx = 0,cnty = 0;    for(LL i = 1;i <= n;i++){        LL l = 1,r = n;        LL tem = -1;        while(l <= r){            LL mid = l+(r-l)/2;            if(cal(mid,i) < x){                l = mid+1;                tem = mid;            }            else {                r = mid-1;            }        }        if(tem != -1){            cntx += tem;        }    }    for(LL i = 1;i <= n;i++){        LL l = 1,r = n;        LL tem = -1;        while(l <= r){            LL mid = l+(r-l)/2;            if(cal(mid,i) <= x){                l = mid+1;                tem = mid;            }            else {                r = mid-1;            }        }        if(tem != -1){            cnty += tem;        }    }    if(cnty < m){        return 1;    }    else if(cntx > m-1){        return -1;    }    else{        return 0;    }}int main(){    int t;    scanf("%d",&t);    while(t--){        scanf("%I64d%I64d",&n,&m);        LL l = -INF,r = INF;        LL ans;        while(l <= r){            LL mid = l+(r-l)/2;            int tag = can(mid);            if(tag == 1){                l = mid+1;            }            else if(tag == -1){                r = mid-1;            }            else{                ans = mid;                break;            }        }        printf("%I64d\n",ans);    }    return 0;}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.