zoukankan      html  css  js  c++  java
  • ZOJ 3962 E.Seven Segment Display / The 14th Zhejiang Provincial Collegiate Programming Contest Sponsored by TuSimple E.数位dp

    Seven Segment Display

    Time Limit: 1 Second      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.

    DigitEnergy Cost
    (units/s)
    0 6
    1 2
    2 5
    3 5
    4 4
    5 5
    6 6
    7 3
    DigitEnergy 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.

    数位DP硬刚

    其实就是暴力

    #include<bits/stdc++.h>
    using namespace std;
    #pragma comment(linker, "/STACK:102400000,102400000")
    #define ls i<<1
    #define rs ls | 1
    #define mid ((ll+rr)>>1)
    #define pii pair<int,int>
    #define MP make_pair
    typedef long long LL;
    const long long INF = 1e18+1LL;
    const double Pi = acos(-1.0);
    const int N = 1e5+10, M = 1e3+20, mod = 1e9+7, inf = 2e9;
    
    
    LL d[N],dp[60][3],vis[60][3],dp1[60][3];
    LL a[] = {6,2,5,5,4,5,6,3,7,6,6,5,4,5,5,4};
    int id(char ch) {
        if(ch >= '0' && ch <= '9') return ch - '0';
        else return ch - 'A' + 10;
    }
    LL quick_pow(LL x,LL p) {
        if(p<=0) return 1;
        LL ans = quick_pow(x,p>>1);
        ans = ans*ans;
        if(p & 1) ans = ans*x;
        return ans;
    }
    LL dfs(int dep,int f,LL x) {
        if(dep<0) return 0;
        if(f && vis[dep][f]) return dp[dep][f];
        if(f) {
            LL& ret = dp[dep][f];
            vis[dep][f] = 1;
            ret += 78*quick_pow(16,dep) + 1LL*16*dfs(dep-1,f,quick_pow(16,dep));
            return ret;
        }
        else
        {
            LL ret = 0;
            for(int i = 0; i <= d[dep]; ++i) {
                LL tmp;
                if(i < d[dep]) tmp = quick_pow(16,dep);
                else tmp = x%quick_pow(16,dep)+1;
                ret += (tmp)*a[i] + dfs(dep-1,i<d[dep],tmp-1);
            }
            return ret;
        }
    }
    LL solve(LL x) {
        if(x < 0) return 0;
        int len = 0;
        LL tmp = x;
        for(LL i = 0; i <= 7; ++i) {
            d[len++] = x%16;
            x/=16;
        }
        return dfs(len-1,0,tmp);
    }
    int main()
    {
        int T;
        scanf("%d",&T);
        while(T--)
        {
            int n;
            char s[10];
           scanf("%d%s",&n,s);
           int L = strlen(s);
           LL l = 0,tmp = 1;
           for(int i = L-1; i >= 0; --i) {
            l += id(s[i])*tmp;
            tmp*=16;
           }
           LL r = l+n-1,ans = 0;
           if(r > 4294967295) {
            ans = solve(4294967295) - solve(l-1);
            l = 0;
            r = r-4294967295-1;
           }
           printf("%lld
    ",ans + solve(r) - solve(l-1));
        }
        return 0;
    }
    
    /*
    2
    3 FFFFFFFF
    7 00000000
    */
  • 相关阅读:
    解决安装Visual Studio 2012后SQL Server 2008 远程过程调用失败的问题
    解决 Visual Studio 2012 有时不能调试的问题
    WPF实现窗体最小化后小图标在右边任务栏下
    WinForm实现窗体最小化后小图标在右边任务栏下
    C# 开机启动代码
    C# ?? 操作符示例
    WPS页面设置
    PCA(主成分分析)和LDA详解
    MySQL命令行导入sql文件时出现乱码解决方案
    IKAnalyzer 独立使用 配置扩展词典
  • 原文地址:https://www.cnblogs.com/zxhl/p/6749187.html
Copyright © 2011-2022 走看看