ZOJ 3962 Seven Segment Display 16进制的八位数加n。求加的过程中所有的花费。显示[0,F]有相应花费。
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]有相应花费。的更多相关文章
- ZOJ 3962 Seven Segment Display(数位DP)题解
题意:给一个16进制8位数,给定每个数字的贡献,问你贡献和. 思路:数位DP,想了很久用什么表示状态,看题解说用和就行,其他的都算是比较正常的数位DP. 代码: #include<iostrea ...
- 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 ...
- ZOJ 3962 Seven Segment Display
Seven Segment Display 思路: 经典数位dp 代码: #include<bits/stdc++.h> using namespace std; #define LL l ...
- zoj 3962 Seven Segment Display 数位dp
非常好的一个题,可以比赛时想到的状态太奇葩,不方便转移,就一直没能AC. 思路:dp(i, j)表示已经考虑了前i位,前i位的和为j的贡献.如果当前的选择一直是最大的选择,那么就必须从0~下一位的最大 ...
- ZOJ 3962 Seven Segment Display(数位DP)
题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3962 题目大意: 有t组数据. 给你一个n,和8位的十六进制数s ...
- ASCII和16进制
所谓的ASCII和16进制都只是概念上的东西,在计算机中通通是二进制 转换应该是输出的转换,同样是一个数,在计算机内存中表示是一样的,只是输出不一样ASCII是针对字符的编码,几乎是键盘上的字符的编码 ...
- Linux c字符串中不可打印字符转换成16进制
本文由 www.169it.com 搜集整理 如果一个C字符串中同时包含可打印和不可打印的字符,如果想将这个字符串写入文件,同时方便打开文件查看或者在控制台中打印出来不会出现乱码,那么可以将字符串中的 ...
- js 16进制字符串互转
/** * 16进制转换为字符串 * @param hex * @returns {*} */ function hexToString(hex) { var tmp = ''; if (hex.le ...
- Windows 注册表 16进制时间转换( Convert Reg_binary Time to a Datetime )
背景: Windows注册表中,存在大量16进制的时间,以 reg_binary存储在注册表中. 例如: 0D 6C A4 4B 37 C5 CE 01 这种值日常报表中需要转换为适合人阅读的格式,实 ...
随机推荐
- 将html文档转成pdf
(1)使用场景:在项目中使用到了合同,只有在合同的头部,是不相同的.在合同的主体部分都是相同的,因此就把他放到了模板(html文件)里面. 在用户线上签约完成之后,可以将pdf版的合同下载. (2)需 ...
- Asp.Net MVC part1
路由简介在Global中注册了路由数据包括:默认Controller,默认Action,请求地址匹配路由规则 约定大于配置为了尽量少的配置,于是将常用的配置作为默认约定,如果不同则进行少量配置主要从存 ...
- log4j.properties配置详解与实例-全部测试通过
最近使用log4j写log时候发现网上的写的都是千篇一律,写的好的嘛不全,写的全一点的嘛没有一点格式,看着累.这里把网上收集到的整理了一下,并且全部都在机器上测试成功了.这么好的文档估计没有了吧? # ...
- Maven多模块项目单独编译子模块项目时报错:Failed to execute goal on project/Could not resolve dependencies for project
背景:常规的父子项目搭建的工程,参考:http://www.cnblogs.com/EasonJim/p/6863987.html 解决方法: 1.需要把parent工程,也就是package是pom ...
- Easyui treegrid 无法显示树形结构解决办法
easyui treegrid 中检查了数据结构没有问题的,但就是不展示树形结构, 检查发现原来是 var columnsAll = [ { title: '任务ID', field: 'TaskID ...
- easyui-validatebox 的简单长度验证
验证: 页面代码: <form id="invoiceEdit"> <input id="fpdm" name="fpdm" ...
- ajax回调中window.open弹出的窗口会被浏览器拦截的解决方法
存在问题:处理页面ajax请求过程中,异步请求成功后需要新开窗口打开 url,使用的是 window.open() 方法 来实现,最终都被浏览器拦截了.不会跳到对应的页面,如下 原因:浏览器之所以拦截 ...
- [web] Get和Post区别,EncType提交数据的格式详解
转载自:http://www.cnblogs.com/sunxucool/archive/2012/12/11/2813113.html 1. get是从服务器上获取数据,post是向服务器传送数据. ...
- Android基础新手教程——4.1.3 Activity登堂入室
Android基础新手教程--4.1.3 Activity登堂入室 标签(空格分隔): Android基础新手教程 本节引言: 好的,在学习了两节的Activity后相信大家已经知道怎样去使用Acti ...
- mssql性能优化
总结下SQL SERVER数据库性能优化相关的注意事项,在网上搜索了一下,发现很多文章,有的都列出了上百条,但是仔细看发现,有很多似是而非或者过时(可能对SQL SERVER6.5以前的版本或者ORA ...