程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> codeforces 486C Palindrome Transformation Ì°ÐÄÇó¹¹Ôì»ØÎÄ

codeforces 486C Palindrome Transformation Ì°ÐÄÇó¹¹Ôì»ØÎÄ

編輯:C++入門知識

codeforces 486C Palindrome Transformation Ì°ÐÄÇó¹¹Ôì»ØÎÄ


µã»÷´ò¿ªÁ´½Ó
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 pZ†·Ÿ"http://www.Bkjia.com/kf/ware/vc/" target="_blank" class="keylink">vc2l0aW9uIGlzIHNob3duIGJvbGQpLjwvcD4KPHA+CkluIG9wdGltYWwgc29sdXRpb24sIE5hbSBtYXkgZG8gNiBmb2xsb3dpbmcgc3RlcHM6PC9wPgo8Y2VudGVyIGNsYXNzPQ=="tex-equation"> \

The result, \, is now a palindrome.


¸øÄãÒ»¸ö×Ö·û´®ÒÔ¼°ËüµÄ³¤¶È£¬²¢ÇÒ¸øÄãÒ»¸öÖ¸Õ룬ָÏò×Ö·û´®µÄ³õʼλÖã¬×Ö·û¿ÉÒÔ+»òÕß-£¬×Ö·ûa¿ÉÒÔ¼õµ½z£¬×Ö·ûz¿ÉÒÔ¼Óµ½a£¬Ö¸Õë¿ÉÒÔÏò×ó»òÕßÏòÓÒÒƶ¯£¬0ºÅλÖÿÉÒÔÒƶ¯µ½×îºóµÄλÖã¬×îºóµÄλÖÃÒ²¿ÉÒÔÒƶ¯µ½0ºÅλÖá£ÎÊ×îÉÙ¶àÉÙ²¿²Ù×÷²ÅÄÜʹµÃ´Ë×Ö·û´®³ÉΪ»ØÎÄ´®¡£
¸ù¾ÝÖ¸ÕëÆðʼλÖ㬿ÉÒÔÅжÏÒƶ¯µÄʱºòÔÚ×ó¡¢ÓÒµÄÄİ벿·ÖÒƶ¯£¬³õʼ»¯Çó³ö×Ö·ûÐèÒª±ä»¯µÄ´ÎÊý£¬È»ºóÌ°ÐÄÇó³öÖ¸ÕëÒƶ¯µÄ´ÎÊý¡£
//31 ms	 900 KB
#include
#include
#include
using namespace std;
char s[100007];
int x[100007],y[100007];
int main()
{
    int len,p,count=0,num=0,j;
    scanf("%d%d%s",&len,&p,s+1);
    if(len==1)
    {
        printf("0\n");
        return 0;
    }
    if(len&1)j=len/2+2;
    else j=len/2+1;
    for(int i=len/2; i>=0&&j<=len; i--,j++)
        if(s[i]!=s[j])
        {
            int a=s[i]-'a';
            int b=s[j]-'a';
            int minn=min(a,b);
            int maxx=max(a,b);
            count+=min(maxx-minn,minn+26-maxx);
            x[num]=i;
            y[num++]=j;
        }
    sort(x,x+num);
    sort(y,y+num);
    if(p<=len/2)//Èç¹ûÖ¸ÕëÔÚ×󲿷Ö
    {
        if(num!=0)
        if(num==1)count+=fabs(x[0]-p);
        else
        {
            int flag=0;
            int aa=min(fabs(x[num-1]-p),fabs(p-x[0]));
            if(x[0]<=p){flag++;count+=(p-x[0]);}//Çó×î×óÃæÔªËؾàÀëÖ¸ÕëµÄ¾àÀë
            if(x[num-1]>p){flag++;count+=(x[num-1]-p);}//Çó×îÓÒÃæÔªËؾàÀëÖ¸ÕëµÄ¾àÀë
            if(flag==2)count+=aa;//Çó×îС¾àÀë
        }
    }
    else//Èç¹ûÖ¸ÕëÔÚÓÒ²¿·Ö
    {
        if(num!=0)
        if(num==1)count+=fabs(y[0]-p);
        else
        {
            int flag=0;
            int aa=min(fabs(y[num-1]-p),fabs(p-y[0]));
            if(y[0]<=p){flag++;count+=(p-y[0]);}
            if(y[num-1]>p){flag++;count+=(y[num-1]-p);}
            if(flag==2)count+=aa;
        }
    }
    printf("%d\n",count);
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved