zoukankan      html  css  js  c++  java
  • 2018 徐州网络赛 I

    •  262144K
     

    Mur loves hash algorithm, and he sometimes encrypt another one's name, and call him with that encrypted value. For instance, he calls Kimura KMR, and calls Suzuki YJSNPI. One day he read a book about SHA-256256 , which can transit a string into just 256256 bits. Mur thought that is really cool, and he came up with a new algorithm to do the similar work. The algorithm works this way: first we choose a single letter L as the seed, and for the input(you can regard the input as a string ss, s[i]s[i] represents the iith character in the string) we calculates the value(|(int) L - s[i]|(int)Ls[i]∣), and write down the number(keeping leading zero. The length of each answer equals to 22because the string only contains letters and numbers). Numbers writes from left to right, finally transfer all digits into a single integer(without leading zero(ss)). For instance, if we choose 'z' as the seed, the string "oMl" becomes "1114541414".

    It's easy to find out that the algorithm cannot transfer any input string into the same length. Though in despair, Mur still wants to know the length of the answer the algorithm produces. Due to the silliness of Mur, he can even not figure out this, so you are assigned with the work to calculate the answer.

    Input

    First line a integer TT , the number of test cases (T le 10)(T10).

    For each test case:

    First line contains a integer NN and a character zz, (N le 1000000)(N1000000).

    Second line contains a string with length NN . Problem makes sure that all characters referred in the problem are only letters.

    Output

    A single number which gives the answer.

    样例输入

    2
    3 z
    oMl
    6 Y
    YJSNPI

    样例输出

    6
    10

    题目来源

    ACM-ICPC 2018 徐州赛区网络预赛

     

    思路:

    水题。

    #include <bits/stdc++.h>
    using namespace std;
    char s[1000010];
    int main()
    {
        int t;
        scanf("%d",&t);
        while(t--)
        {
            int n;
            char a;
            scanf("%d %c",&n,&a);
            scanf("%s",s);
            int l=strlen(s);
            bool ok=false;
            int ans=0;
            for(int i=0; i<l;++i)
            {
                int d=abs(a-s[i]);
                if (ok) ans+=2;
                else {
                    if (d>10) {
                        ans+=2;
                        ok=true;
                    } else if (d!=0) {
                        ans++;
                        ok=true;
                    }
                }
            }
            printf("%d
    ",max(ans,1));
        }
    
        return 0;
    }
    View Code
  • 相关阅读:
    ThinkDev组件库 开篇
    使用 CodeIgniter 框架快速开发 PHP 应用(六)
    使用 CodeIgniter 框架快速开发 PHP 应用(五)
    jQuery EasyUI 的截图插件(imgAreaSelect)用法
    细说UI线程和Windows消息队列
    ASP.NET MVC2 异常处理机制中令人费解的HTTP 500错误
    从了解到深入——剖析WF4的数据流
    .NET 4.0中数组的新增功能
    成功就是把自己的特长发挥得淋漓尽致(更新)
    WPF4数据绑定应用之“创建具有多种显示效果的字串”
  • 原文地址:https://www.cnblogs.com/acerkoo/p/9638101.html
Copyright © 2011-2022 走看看