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

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

Description

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 47, 744, 4 are lucky and 5, 17, 467 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 cin, cout 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

题解:题意很好理解,重点难点是把lucky numbers存到一个数组里(dfs),再根据题意求和。

          其中sum(x) = next(1) + next(2) + next(3) + ... + next(x), 所以next(l) + next(l+1) + ... + next(r) = sum(r) - sum(l-1)。

代码:

1 #include 
2 #include
3 #include
4 5 using namespace std; 6 typedef long long LL; 7 8 const int maxLength = 10000; 9 LL luck[maxLength];10 int index = 0;11 12 void dfs(LL x, int cursor) {13 if(cursor > 10) {14 return;15 }16 luck[index++] = x;17 dfs(x*10+4, cursor+1);18 dfs(x*10+7, cursor+1);19 }20 //sum(x) = next(1)+next(2)+...next(x)21 LL sum(LL x) {22 LL sum = 0;23 if(x == 0) {24 return 0;25 }26 for(int i=0; i
= luck[i]) {28 sum += luck[i]*(luck[i] - luck[i-1]);29 }else {30 sum += luck[i]*(x-luck[i-1]);31 break;32 }33 }34 return sum;35 }36 int main()37 {38 LL l, r;39 dfs(4, 0);40 dfs(7, 0);41 sort(luck, luck+index);42 cin >> l >> r;43 cout << sum(r)-sum(l-1) << endl;44 return 0;45 }

 

转载请注明出处:

转载于:https://www.cnblogs.com/michaelwong/p/4117182.html

你可能感兴趣的文章
Mysql-5.6.x多实例配置
查看>>
psutil
查看>>
在git@osc上托管自己的代码
查看>>
机器学习算法:朴素贝叶斯
查看>>
小五思科技术学习笔记之扩展访问列表
查看>>
使用Python脚本检验文件系统数据完整性
查看>>
使用MDT部署Windows Server 2003 R2
查看>>
Redhat as5安装Mysql5.0.28
查看>>
通过TMG发布ActiveSync
查看>>
Web服务器的配置与管理(4) 配置访问权限和安全
查看>>
吉林出差所见、所闻、所感
查看>>
RHEL7修改root用户密码
查看>>
mysqldump导出 timestamp类型数据 时区偏差8小时
查看>>
我的友情链接
查看>>
中小型企业如ERP选型四大标准
查看>>
笔记——quota磁盘配额
查看>>
索引表批量数据装载
查看>>
@Value("#{}")与@Value("${}")的区别
查看>>
Zabbix邮件报警设置方法
查看>>
20145328 《信息安全系统设计基础》第6周学习总结
查看>>