codeforces 486C Palindrome Transformation 贪心求构造回文

来源:互联网 发布:jquery循环二维数组 编辑:程序博客网 时间:2024/05/06 08:53
Palindrome Transformation
Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Submit Status

Description

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 Input

Input
8 3aeabcaez
Output
6

Hint

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.

 给你一个字符串以及它的长度,并且给你一个指针,指向字符串的初始位置,字符可以+或者-,字符a可以减到z,字符z可以加到a,指针可以向左或者向右移动,0号位置可以移动到最后的位置,最后的位置也可以移动到0号位置,

  根据指针起始位置,可以判断移动的时候在左、右的哪半部分移动,初始化求出字符需要变化的次数,然后贪心求出指针移动的次数。

#include <iostream>  #include <cstring>  #include <cstdio>  #include <cstdlib>  using namespace std;  char s[100005];  int n,p,l,ans,f[100005];  int main()  {      scanf("%d%d",&n,&p);      scanf("%s",s);      ans=0; memset(f,0,sizeof(f));      for (int i=0;i<=n/2-1;i++)      {          l=abs(s[n-i-1]-s[i]);          if (l>13) l=26-l;          ans+=l;          if (l) f[i]=1;      }      if (p>n/2) p=n-p;      else p--;      int l1=0,l2=0;      for (int i=0;i<=n/2-1;i++)      {          if (i<=p && p-i>l1 && f[i]) l1=p-i;          if (i>=p && i-p>l2 && f[i]) l2=i-p;      }      if (l1<=l2) ans=2*l1+l2+ans;      else ans=ans+2*l2+l1;      printf("%d",ans);      return 0;  }

0 0