【 Codeforces 486C +vector】

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 3
aeabcaez
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.

#include<cstdio>
#include<cstring>
#include<vector>
#include<cmath>
#include<algorithm>
using namespace std;
char st[100011];
int N,M;
vector <int> v;
int solve()
{
    int i,nl = N / 2 , ans = 0 ,sum;
    for(i = 0 ; i < nl ; i++){
        sum = abs(st[i] - st[N - 1 - i]); //两个字符间的ASCII差值
        sum = min(sum, 26 - sum);
        ans += sum;
        if(sum)
            v.push_back(abs(i + 1 - M) < abs(N - M - i) ? i + 1 : N - i);
    }
    nl = v.size();
    if(!nl)
        return ans;
    sort(v.begin(),v.end());
    return ans + v[nl - 1] - v[0] + min(abs(v[nl - 1] - M) , abs(v[0] - M)) ; //找到最优解,即第一个先变那个字符
}
int main()
{
    scanf("%d %d %s",&N,&M,st);
    printf("%d\n",solve());
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值