codeforces 817C Really Big Numbers

Posted malcolmmeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 817C Really Big Numbers相关的知识,希望对你有一定的参考价值。

注意到一点,如果x是Really Big Number,那么x+1一定是Really Big Number

原因是sumd(x+1)一定不超过sumd(x)+1 sumd表示各个数位的数字之和

所以在序列中存在一个数字,这个数字之前全不是Really Big Number,它和他之后的

全是Really Big Number,通过二分就可以找到这个数字

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<string>
#include<vector>
#include<queue>
#include<map>
#include<unordered_map>
#define DEBUG(x) cout<<#x<<" = "<<x<<endl
using namespace std;
typedef long long ll;
///二分可以用在单调序列上,也可以用在性质发生变化的序列上
ll n,s;
bool judge(ll m)
{
    ll t=m;
    ll dsum=0;
    while(t){
        dsum+=t%10;
        t/=10;
    }
    return m-dsum>=s;
}
int main()
{
//    freopen("in.txt","r",stdin);
    cin>>n>>s;
    ll l=1,r=n;
    ll lp=-1;
    while(l<=r){
        ll mid=(l+r)>>1;
        if(judge(mid)){
            lp=mid;
            r=mid-1;
        }
        else l=mid+1;
    }
    ll ans=lp==-1?0:n-lp+1;
    cout<<ans<<endl;
}

 

以上是关于codeforces 817C Really Big Numbers的主要内容,如果未能解决你的问题,请参考以下文章

CF817C Really Big Numbers

题解 CF817C Really Big Numbers

Paint it really, really dark gray CodeForces - 717E

codeforces717E Paint it really, really dark gray(树上dfs)

Codeforces 712A. Memory and Crow

CodeForces - 589A(二分+贪心)