codeforces Lucky Sum

http://codeforces.com/contest/122/problem/C    

C. Lucky Sum
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Petya loves lucky numbers. Everybody knows that lucky numbers are positive integers whose decimal representation contains only the lucky digits 4 and 7. For example, numbers 477444 are lucky and 517467 are not.

Let next(x) be the minimum lucky number which is larger than or equals x. Petya is interested what is the value of the expressionnext(l) + next(l + 1) + ... + next(r - 1) + next(r). Help him solve this problem.

Input

The single line contains two integers l and r (1 ≤ l ≤ r ≤ 109) — the left and right interval limits.

Output

In the single line print the only number — the sum next(l) + next(l + 1) + ... + next(r - 1) + next(r).

Please do not use the %lld specificator to read or write 64-bit integers in C++. It is preferred to use the cincout streams or the%I64d specificator.

Sample test(s)
input
2 7
output
33
input
7 7
output
7
Note

In the first sample: next(2) + next(3) + next(4) + next(5) + next(6) + next(7) = 4 + 4 + 4 + 7 + 7 + 7 = 33

In the second sample: next(7) = 7




题解:用队列(bfs)处理出含有4,7 组合的数有多少个??(这个地方可以思考一下)

让后对区间分段处理即可

code:

#include<cstdio>
#include<cstring>
#include<queue>
#include<iostream>
#include<algorithm>
using namespace std;
typedef long long LL;
#define maxn 1023
LL dx[] = {4,7};
int cnt ;
LL a[maxn];
struct node{
    LL x;
};
void bfs(){
    a[0] = 4;a[1] = 7;
    cnt = 2;
    queue<node> Q;
    node p,q;
    p.x = 4;Q.push(p);
    p.x = 7;Q.push(p);
    while(!Q.empty()){
        q = Q.front();Q.pop();
        for(int i = 0;i < 2;i++)
        {
            p.x = q.x * 10 + dx[i];
            a[cnt ++] = p.x;
            Q.push(p);
             if(p.x > 1e9) return;
        }
    }

}
int main(){

    bfs();
    LL r,l,n,m;
    while(cin >> l >> r){

        LL sum = 0;
        while(l <= r){
            int k = lower_bound(a,a+maxn,l) - a;
            if(l == a[k] ) {l++;sum += a[k];}
            else {
                n = r - l;
                m = a[k] - l;
                if(n >= m) sum += a[k] * (m+1);
                else sum += a[k] * (n + 1);
                l = a[k] + 1;
            }
        }
        cout << sum << endl;
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值