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

Seven Segment Display
Time Limit: 2 Seconds      Memory Limit: 65536 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)
0    6
1    2
2    5
3    5
4    4
5    5
6    6
7    3
    
Digit    Energy Cost
(units/s)
8    7
9    6
A    6
B    5
C    4
D    5
E    5
F    4
    
            
            
            
            

For example, in order to display the hexadecimal number "5A8BEF67" on the component for one second, 5 + 6 + 7 + 5 + 5 + 4 + 6 + 3 = 41 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 (1 ≤ i < n), the number displayed will be increased by 1. If the number displayed will be larger than the hexadecimal number "FFFFFFFF" after increasing, the counter will set the number to 0 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 (1 ≤ T ≤ 105), indicating the number of test cases. For each test case:

The first and only line contains an integer n (1 ≤ n ≤ 109) and a capitalized eight-digit hexadecimal number m (00000000 ≤ 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

3
5 89ABCDEF
3 FFFFFFFF
7 00000000

Sample Output

208
124
327

Hint

For the first test case, the counter will display 5 hexadecimal numbers (89ABCDEF, 89ABCDF0, 89ABCDF1, 89ABCDF2, 89ABCDF3) in 5 seconds. The total units of energy cost is (7 + 6 + 6 + 5 + 4 + 5 + 5 + 4) + (7 + 6 + 6 + 5 + 4 + 5 + 4 + 6) + (7 + 6 + 6 + 5 + 4 + 5 + 4 + 2) + (7 + 6 + 6 + 5 + 4 + 5 + 4 + 5) + (7 + 6 + 6 + 5 + 4 + 5 + 4 + 5) = 208.

For the second test case, the counter will display 3 hexadecimal numbers (FFFFFFFF, 00000000, 00000001) in 3 seconds. The total units of energy cost is (4 + 4 + 4 + 4 + 4 + 4 + 4 + 4) + (6 + 6 + 6 + 6 + 6 + 6 + 6 + 6) + (6 + 6 + 6 + 6 + 6 + 6 + 6 + 2) = 124.
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+100;
ll value[20]={6,2,5,5,4,5,6,3,7,6,6,5,4,5,5,4};
char s[10];
ll dp[10][16][10];///dp[i][j][k]表示长度为i,前面出现j,k次,j出现的次数。
int digit[10];
ll n;
ll dfs(int len,int value,int bounded,int cnt)
{
    if(len==0){
        return cnt;
    }
    if(!bounded&&dp[len][value][cnt]!=-1) return dp[len][value][cnt];
    int d = bounded?digit[len]:15;
    ll ans = 0;
    for(int i = 0; i <= d; i++){
        ans += dfs(len-1,value,bounded&&(i==d),cnt+(i==value));
    }
    if(!bounded){
        dp[len][value][cnt] = ans;
    }
    return ans;
}
ll cal(ll n)
{
    if(n<0) return 0;
    int len = 0;
    while(n){
        digit[++len] = n%16;
        n /= 16;
    }
    while(len<8){
        digit[++len] = 0;
    }
    ll res = 0;
    for(int j = 0; j < 16; j++){
        res += dfs(len,j,true,0)*value[j];
    }
    return res;
}
ll getValue()
{
    ll cnt = 0;
    ll p = 1, x;
    for(int i = 7; i >= 0; i--){
        if(s[i]>='0'&&s[i]<='9'){
            x = s[i]-'0';
        }else
        {
            x = (s[i]-'A')+10;
        }
        cnt += p*x;
        p *= 16;
    }
    return cnt;
}
int main()
{
    int T;
    ll mas = (1LL<<32);
    memset(dp, -1, sizeof dp);
    //cout<<cal(0)<<endl;  //ans = 48;
    ll F8 = cal(mas-1);
    //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-1>mas){///当超出FFFFFFFF会重新变成00000000
            printf("%lld
",cal(n-1+m-mas)+F8-cal(m-1));
        }else{
            printf("%lld
",cal(n-1+m)-cal(m-1));
        }
    }
    return 0;
}
原文地址:https://www.cnblogs.com/xiaochaoqun/p/6761528.html