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 这种值日常报表中需要转换为适合人阅读的格式,实 ...
随机推荐
- iOS 自定义相机带拍摄区域边框及半透明遮罩层(含源码)
开始时准备封装成ViewController的相机,但是在不改我相机控件源码的情况下,使用者很难自定义UI.于是想到将相机核心功能封装到View里,暴露出功能方法给外面调用,调用者只需将LFCamer ...
- JNI之Hello World!
基本流程: 1. 创建一个类(HelloWorld.java)2. 使用 javac 编译该类3. 利用 javah -jni 产生头文件4. 用本地代码实现头文件中定义的方法5. Run 备注:在一 ...
- U盘安装Ubuntu 16.04出现:Failed to load ldlinux.c32
启动的时候如果不开启UEFI,则会提示: Failed to load ldlinux.c32 Boot failed: please change disks and press a key to ...
- C# 6.0可能会支持模式匹配了
今天在CodePlex的Roslyn讨论区发现了一个帖子:Draft spec for records and pattern-matching in C#,估计MS计划在C# 6.0中支持模式匹配了 ...
- 开源的库RestSharp轻松消费Restful Service
现在互联网上的服务接口都是Restful的,SOAP的Service已经不是主流..NET/Mono下如何消费Restful Service呢,再也没有了方便的Visual Studio的方便生产代理 ...
- java直接跳转页面
public static String genForwardHtml(String url, Map<String, String> parameters, String charset ...
- sqlserver 删除临时表
sqlserver 删除临时表 if object_id('tempdb..#tempTable') is not null Begin drop table #tempTable End
- HTML5 canvas图形库 RGraph【转】
RGraph是一个使用HTML5 Canvas标签实现的图表制作Library.利用该Library生成的Chart具有可交互性,当鼠标点击或移过时会显示相应的信息,可以动态加载Chart或对特殊点进 ...
- Mybatis c3p0 整合
1.下载c3p0 2.实现 UnpooledDataSourceFactory package com.joinhealth.esb.db; import org.apache.ibatis.data ...
- Mac上安装使用Nginx
1.brew search nginx 2.brew install nginx 启动nginx ,sudo nginx ;访问localhost:8080 发现已出现nginx的欢迎页面了. 备注: ...