Codeforces_731_A
Posted 冷暖知不知
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces_731_A相关的知识,希望对你有一定的参考价值。
http://codeforces.com/problemset/problem/731/A
每次操作总共4种情况,判断一下就好了。
#include<iostream> #include<cstring> #include<cstdio> #include<algorithm> using namespace std; char s[105]; int main() { int cnt = 0; char now = ‘a‘; scanf("%s",s); int len = strlen(s); for(int i = 0;i < len;i++) { if(now <= s[i]) cnt += min(s[i]-now,now+26-s[i]); else cnt += min(now-s[i],s[i]+26-now); now = s[i]; } printf("%d\n",cnt); return 0; }
以上是关于Codeforces_731_A的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #731 (Div. 3)