在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
C. Palindrome Transformation
time limit per test
1 secondmemory limit per test
256 megabytesinput
standard inputoutput
standard outputNam 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 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; }
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论