Seven Segment Display
Time Limit: Seconds Memory Limit: KB A seven segment display, or seven segment indicator, is a form of electronic display device for displaying decimal numerals that is an alternative to the more complex dot matrix displays. Seven segment displays are widely used in digital clocks, electronic meters, basic calculators, and other electronic devices that display numerical information. Edward, a student in Marjar University, is studying the course "Logic and Computer Design Fundamentals" this semester. He bought an eight-digit seven segment display component to make a hexadecimal counter for his course project. In order to display a hexadecimal number, the seven segment display component needs to consume some electrical energy. The total energy cost for display a hexadecimal number on the component is the sum of the energy cost for displaying each digit of the number. Edward found the following table on the Internet, which describes the energy cost for display each kind of digit.
Digit Energy Cost
(units/s) Digit Energy Cost
(units/s) A
B
C
D
E
F For example, in order to display the hexadecimal number "5A8BEF67" on the component for one second, + + + + + + + = units of energy will be consumed. Edward's hexadecimal counter works as follows: The counter will only work for n seconds. After n seconds the counter will stop displaying.
At the beginning of the 1st second, the counter will begin to display a previously configured eight-digit hexadecimal number m.
At the end of the i-th second ( ≤ i < n), the number displayed will be increased by . If the number displayed will be larger than the hexadecimal number "FFFFFFFF" after increasing, the counter will set the number to and continue displaying. Given n and m, Edward is interested in the total units of energy consumed by the seven segment display component. Can you help him by working out this problem?
Input There are multiple test cases. The first line of input contains an integer T ( ≤ T ≤ ), indicating the number of test cases. For each test case: The first and only line contains an integer n ( ≤ n ≤ ) and a capitalized eight-digit hexadecimal number m ( ≤ m ≤ FFFFFFFF), their meanings are described above. We kindly remind you that this problem contains large I/O file, so it's recommended to use a faster I/O method. For example, you can use scanf/printf instead of cin/cout in C++.
Output For each test case output one line, indicating the total units of energy consumed by the eight-digit seven segment display component.
Sample Input 89ABCDEF
FFFFFFFF Sample Output Hint For the first test case, the counter will display hexadecimal numbers (89ABCDEF, 89ABCDF0, 89ABCDF1, 89ABCDF2, 89ABCDF3) in seconds. The total units of energy cost is ( + + + + + + + ) + ( + + + + + + + ) + ( + + + + + + + ) + ( + + + + + + + ) + ( + + + + + + + ) = . For the second test case, the counter will display hexadecimal numbers (FFFFFFFF, , ) in seconds. The total units of energy cost is ( + + + + + + + ) + ( + + + + + + + ) + ( + + + + + + + ) = .
Author: ZHOU, Jiayu
Source: The 14th Zhejiang Provincial Collegiate Programming Contest Sponsored by TuSimple
Submit Status /**
题目:ZOJ 3962 Seven Segment Display
链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5594
题意:16进制的八位数加n。求加的过程中所有的花费。显示[0,F]有相应花费。
思路:数位dp
首先获得当前值m,将要加的为n;计算cal(n+m-1)-cal(m-1)即为结果。
cal(x)表示从00000000加x次的花费和,用数位dp计算每个[0,F]在x范围内的出现次数。
00000000表示第一个数。即:加一次;
*/ #include<iostream>
#include<cstring>
#include<algorithm>
#include<cstdio>
#include<vector>
#include<set>
#include<cmath>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int inf = 0x3f3f3f3f;
const int maxn = 1e5+;
ll value[]={,,,,,,,,,,,,,,,};
char s[];
ll dp[][][];///dp[i][j][k]表示长度为i,前面出现j,k次,j出现的次数。
int digit[];
ll n;
ll dfs(int len,int value,int bounded,int cnt)
{
if(len==){
return cnt;
}
if(!bounded&&dp[len][value][cnt]!=-) return dp[len][value][cnt];
int d = bounded?digit[len]:;
ll ans = ;
for(int i = ; i <= d; i++){
ans += dfs(len-,value,bounded&&(i==d),cnt+(i==value));
}
if(!bounded){
dp[len][value][cnt] = ans;
}
return ans;
}
ll cal(ll n)
{
if(n<) return ;
int len = ;
while(n){
digit[++len] = n%;
n /= ;
}
while(len<){
digit[++len] = ;
}
ll res = ;
for(int j = ; j < ; j++){
res += dfs(len,j,true,)*value[j];
}
return res;
}
ll getValue()
{
ll cnt = ;
ll p = , x;
for(int i = ; i >= ; i--){
if(s[i]>=''&&s[i]<=''){
x = s[i]-'';
}else
{
x = (s[i]-'A')+;
}
cnt += p*x;
p *= ;
}
return cnt;
}
int main()
{
int T;
ll mas = (1LL<<);
memset(dp, -, sizeof dp);
//cout<<cal(0)<<endl; //ans = 48;
ll F8 = cal(mas-);
//cout<<"cal(0) = "<<cal(0)<<endl;
//cout<<"cal(1) = "<<cal(1)<<endl;
//cout<<"F8 = "<<F8<<endl;
cin>>T;
while(T--)
{
scanf("%lld",&n);
scanf("%s",s);
ll m = getValue();
if(n+m->mas){///当超出FFFFFFFF会重新变成00000000
printf("%lld\n",cal(n-+m-mas)+F8-cal(m-));
}else{
printf("%lld\n",cal(n-+m)-cal(m-));
}
}
return ;
}

ZOJ 3962 Seven Segment Display 16进制的八位数加n。求加的过程中所有的花费。显示[0,F]有相应花费。的更多相关文章

  1. ZOJ 3962 Seven Segment Display(数位DP)题解

    题意:给一个16进制8位数,给定每个数字的贡献,问你贡献和. 思路:数位DP,想了很久用什么表示状态,看题解说用和就行,其他的都算是比较正常的数位DP. 代码: #include<iostrea ...

  2. NYOJ-244 16进制的简单运算 AC 分类: NYOJ 2014-01-17 21:11 195人阅读 评论(0) 收藏

    #include<stdio.h> int main() { long x,y; char op; int t; scanf("%d ", &t); while ...

  3. ZOJ 3962 Seven Segment Display

    Seven Segment Display 思路: 经典数位dp 代码: #include<bits/stdc++.h> using namespace std; #define LL l ...

  4. zoj 3962 Seven Segment Display 数位dp

    非常好的一个题,可以比赛时想到的状态太奇葩,不方便转移,就一直没能AC. 思路:dp(i, j)表示已经考虑了前i位,前i位的和为j的贡献.如果当前的选择一直是最大的选择,那么就必须从0~下一位的最大 ...

  5. ZOJ 3962 Seven Segment Display(数位DP)

    题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3962 题目大意: 有t组数据. 给你一个n,和8位的十六进制数s ...

  6. ASCII和16进制

    所谓的ASCII和16进制都只是概念上的东西,在计算机中通通是二进制 转换应该是输出的转换,同样是一个数,在计算机内存中表示是一样的,只是输出不一样ASCII是针对字符的编码,几乎是键盘上的字符的编码 ...

  7. Linux c字符串中不可打印字符转换成16进制

    本文由 www.169it.com 搜集整理 如果一个C字符串中同时包含可打印和不可打印的字符,如果想将这个字符串写入文件,同时方便打开文件查看或者在控制台中打印出来不会出现乱码,那么可以将字符串中的 ...

  8. js 16进制字符串互转

    /** * 16进制转换为字符串 * @param hex * @returns {*} */ function hexToString(hex) { var tmp = ''; if (hex.le ...

  9. Windows 注册表 16进制时间转换( Convert Reg_binary Time to a Datetime )

    背景: Windows注册表中,存在大量16进制的时间,以 reg_binary存储在注册表中. 例如: 0D 6C A4 4B 37 C5 CE 01 这种值日常报表中需要转换为适合人阅读的格式,实 ...

随机推荐

  1. 更新xcode后插件失效问题——不针对特定版本的通用解决方法

    一.Xcode更新后插件失效的原理 1.每次更新Xcode后插件都会失效,其实插件都还在这个目录好好的躺着呢: ~/Library/Application Support/Developer/Shar ...

  2. SecureCRT的一些问题解决

    按下退格键发送删除命令 设置缓冲 拷贝与粘贴 多标签切换   ctrl + tab . 如果同时按下shift,可以方向切换

  3. svn的安装(整合apache、ldap)包括错误解决post commit FS processing had error

    2013年12月5日 admin 发表评论 阅读评论 以下是centos环境下,以yum安装apache及其相关软件.svn使用源码包编译,使用官网最新的1.8.5版本. 一.安装apache ope ...

  4. ZooKeeper本身是一个分布式应用程序,为写入分布式应用程序提供服务。

    ZooKeeper本身是一个分布式应用程序,为写入分布式应用程序提供服务. 作为ZooKeeper架构的一部分的每个组件在下表中进行了说明. 部分 描述 Client(客户端) 客户端,我们的分布式应 ...

  5. SpringBoot下文件上传与下载的实现

    原文:http://blog.csdn.net/colton_null/article/details/76696674 SpringBoot后台如何实现文件上传下载? 最近做的一个项目涉及到文件上传 ...

  6. javascript快速入门13--BOM——浏览器对象模型(Browser Object Model)

    什么是BOM? BOM是Browser Object Model的缩写,简称浏览器对象模型 BOM提供了独立于内容而与浏览器窗口进行交互的对象 由于BOM主要用于管理窗口与窗口之间的通讯,因此其核心对 ...

  7. SSH 错误解决案例1:Read from socket failed: Connection reset by peer

    今天早上天天连接的开发机突然报出连接错误. 这个错误是SSH最常见错误,造成的原因也是千奇百怪(具体可goole),下面描述我的server的问题: 客户端报错 [root@server]# ssh ...

  8. objc语言的运行时处理

    在Objective-C中,消息是通过objc_msgSend()这个runtime方法及相近的方法来实现的.这个方法需要一个target,selector,还有一些参数.理论上来说,编译器只是把消息 ...

  9. Android使用sqlliteOpenhelper更改数据库的存储路径放到SD卡上

    假设使用默认的系统管理,默认放在包以下.比較省心.并且在卸载app后不会造成数据残留.可是这样也有一个问题.比方我做一个背单词的软件,那么当用户卸载掉这个app时,他辛辛苦苦下载的单词库也没了... ...

  10. Python 3 初探,第 1 部分: Python 3 的新特性

    Python 3 是 Guido van Rossum 功能强大的通用编程语言的最新版本.它虽然打破了与 2.x 版本的向后兼容性,但却清理了某些语法方面的问题.本文是系列文章中的第一篇,介绍了影响该 ...