博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
codeforces Lucky Sum
阅读量:4286 次
发布时间:2019-05-27

本文共 1948 字,大约阅读时间需要 6 分钟。

    

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
#include
#include
#include
#include
using namespace std;typedef long long LL;#define maxn 1023LL dx[] = {4,7};int cnt ;LL a[maxn];struct node{ LL x;};void bfs(){ a[0] = 4;a[1] = 7; cnt = 2; queue
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; }}

转载地址:http://xcsgi.baihongyu.com/

你可能感兴趣的文章
Node.Js url模块详解
查看>>
Node.Js util模块
查看>>
Node.Js http模块(一)-发送http请求实例
查看>>
Node.Js cheerio模块--操作/解析Html
查看>>
Node.Js cheerio模块简单API
查看>>
C# sha1加密
查看>>
Node.Js v4.4.0版本以上支持lambda表达式
查看>>
Node.js events模块(一)事件循环
查看>>
Node.Js events模块(二)-EventEmitter自定义操作事件
查看>>
HTML5 WebSocket实例(三)-文件上传处理
查看>>
C# Newtonsoft.Json之LINQ To Json实例(一)
查看>>
Node.Js Stream(流)-(二)
查看>>
C# 常见Url操作实例(一)、正则表达式匹配URl
查看>>
C# 常见Url操作实例(二)
查看>>
C# Url操作类封装、仿Node.Js中的Url模块
查看>>
AngularJS ng-checked指令
查看>>
AngularJs ng-change事件/指令
查看>>
c#必须使用适当的属性或方法修改此标头解决办法
查看>>
C#文件下载、文件分块下载实例(一)
查看>>
C#分块下载文件实例(二)
查看>>