zoukankan      html  css  js  c++  java
  • Codeforces Round 486C

    C. Palindrome Transformation
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Nam is playing with a string on his computer. The string consists of n lowercase English letters. It is meaningless, so Nam decided to make the string more beautiful, that is to make it be a palindrome by using 4 arrow keys: left, right, up, down.

    There is a cursor pointing at some symbol of the string. Suppose that cursor is at position i (1 ≤ i ≤ n, the string uses 1-based indexing) now. Left and right arrow keys are used to move cursor around the string. The string is cyclic, that means that when Nam presses left arrow key, the cursor will move to position i - 1 if i > 1 or to the end of the string (i. e. position n) otherwise. The same holds when he presses the right arrow key (if i = n, the cursor appears at the beginning of the string).

    When Nam presses up arrow key, the letter which the text cursor is pointing to will change to the next letter in English alphabet (assuming that alphabet is also cyclic, i. e. after 'z' follows 'a'). The same holds when he presses the down arrow key.

    Initially, the text cursor is at position p.

    Because Nam has a lot homework to do, he wants to complete this as fast as possible. Can you help him by calculating the minimum number of arrow keys presses to make the string to be a palindrome?

    Input

    The first line contains two space-separated integers n (1 ≤ n ≤ 105) and p (1 ≤ p ≤ n), the length of Nam's string and the initial position of the text cursor.

    The next line contains n lowercase characters of Nam's string.

    Output

    Print the minimum number of presses needed to change string into a palindrome.

    Sample test(s)
    Input
    8 3
    aeabcaez
    Output
    6
    Note

    A string is a palindrome if it reads the same forward or reversed.

    In the sample test, initial Nam's string is: (cursor position is shown bold).

    In optimal solution, Nam may do 6 following steps:

    The result, , is now a palindrome.

    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include <ctime>
    #include <iostream>
    #include <algorithm>
    #include <set>
    #include <vector>
    #include <sstream>
    #include <queue>
    #include <typeinfo>
    #include <fstream>
    typedef long long ll;
    using namespace std;
    //freopen("D.in","r",stdin);
    //freopen("D.out","w",stdout);
    #define sspeed ios_base::sync_with_stdio(0);cin.tie(0)
    const int maxn=2000000+100;
    int main()
    {
        sspeed;
        int n,pos;
        string s;
        cin>>n>>pos;
        pos--;
        if(pos>n/2-1)
            pos=n-pos-1;
        cin>>s;
        int ans=0;
        int l=0,r=n/2-1;
        while(l<n/2&&s[l]==s[n-l-1])
            l++;
        while(r>=0&&s[r]==s[n-r-1])
            r--;
        //cout<<l<<" "<<r<<endl;
        if(l<=r){
        for(int i=l;i<=r;i++)
        {
            int temp=abs(s[i]-s[n-i-1]);
            ans+=min(temp,26-temp);
            //cout<<ans<<endl;
        }
        ans=ans+min(abs(pos-r),abs(pos-l))+abs(l-r);
        cout<<ans<<endl;
        }
        else
            cout<<ans<<endl;
        return 0;
    }
  • 相关阅读:
    JS中怎样获取当前日期的前一个月和后一个月的日期字符串
    JS中怎样将时间字符串转换成Date并比较大小
    Java中判断两个Date时间段是否有交集的方法
    gRPC中Java和node进行异构通信-互为客户端和服务端
    ffmpeg external libraries 下载地址
    libsvtav1 的 qp 和比特率对照表
    libsvtav1 AV1 编码速度比 libaom 大大提升
    ffmpeg windows 最新编译内部版本下载地址变更
    解开获取 aria2c 帮助信息的误区
    frei0r 过了好几年增加 aech0r 滤镜
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4133016.html
Copyright © 2011-2022 走看看