CodeFoeces-708A

题目

原题链接:A. Letters Cyclic Shift

题意

给出一个字串s,需要进行一次有l到r字符前推的操作(a→z),来使字串字典序最小。
跳过所有开头的a,然后再到a结束。

代码

#include
using namespace std;
char s[100010];
int main() {
    cin>>s;
    int l=strlen(s),i=0;
    if(l==1) {
        if(s[0]!='a')printf("%c\n",s[0]-1);
        else printf("z\n");
        return 0;
    }
    for(; i

你可能感兴趣的:(CodeFoeces-708A)