码迷,mamicode.com
首页 > 其他好文 > 详细

CF Codeforces Round #256 (Div. 2) D (448D) Multiplication Table

时间:2017-04-29 12:00:27      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:str   style   string   pre   fine   cstring   space   size   ios   




二分!!!


AC代码例如以下:



#include<iostream>
#include<cstring>
#include<cstdio>
#define ll long long
using namespace std;

ll n,m,k;

ll work(ll a)
{
    ll i,j;
    ll ans=0;
    for(i=1;i<=n;i++)
    {
        j=a/i;
        if(j>m)
            j=m;
        ans+=j;
    }
    return ans;
}

int main()
{
    scanf("%I64d%I64d%I64d",&n,&m,&k);
    ll l,r,mid;
    l=1;
    r=n*m+1;
    while(l<r)
    {
        mid=(l+r)/2;
        //cout<<mid<<"!!!!!!!!!!!!!!!!!!!!!!"<<work(mid)<<endl;
        if(work(mid)<k) l=mid+1;
        else r=mid;
    }
    cout<<r<<endl;
    return 0;
}


CF Codeforces Round #256 (Div. 2) D (448D) Multiplication Table

标签:str   style   string   pre   fine   cstring   space   size   ios   

原文地址:http://www.cnblogs.com/lytwajue/p/6784796.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!