洛谷——P4109 [HEOI2015]訂價

P4109 [HEOI2015]訂價

 

模擬(有點兒貪心)c++

 

題目要求在區間$l,r$中$x$後導0儘可能多,且除去後導0以外,最後一個數儘可能是$5$才最優spa

從$l$到$r$依次考慮,code

假設當前考慮到$5000$,$r=60000$,blog

那麼在$5000$到$6000$之間的都不用考慮,由於比當前優的只能是後導0比其多的(emmm),應該是後導0與其一致或比其多而且符合上述條件的get

 

那麼每次$l$都要加上$l$這個數的後導0的個數個10it

#include<bits/stdc++.h>

using namespace std;

int T,l,r;

int pow(int a,int b){
    int res=1;
    for(;b;b>>=1,a=a*a)
        if(b&1) res=res*a;
    return res;
}

int main()
{
    scanf("%d",&T);
    while(T--){
        int maxn=0x7fffffff;
        scanf("%d%d",&l,&r);
        //->10^N
        int ans;
        while(l<=r){
            int x=l,sum=0,len=0,y;
            while(x) {
                if(!(x%10)) sum++,x/=10;
                else break;
            }
            y=x;
            while(x) x/=10,len++;
            len*=2;
            if(y%10==5) len--;
            if(len<maxn) maxn=len,ans=l;
            l+=pow(10,sum);
        }
        printf("%d\n",ans);
    }
    
    return 0;
}
相關文章
相關標籤/搜索