码迷,mamicode.com
首页 > 其他好文 > 详细

字典序最小

时间:2018-07-30 18:06:16      阅读:359      评论:0      收藏:0      [点我收藏+]

标签:put   code   open   max   input   int   stdin   include   clu   

#include<bits/stdc++.h>
using namespace std;
#define maxn 110
int solve(const char* s,int p,int q){
    int n=strlen(s);
    for(int i=0;i<n;i++)
    if(s[(p+i)%n]!=s[(q+i)%n])
    return s[(p+i)%n]<s[(q+i)%n];
    return 0;
}
int main(){
    int t;
    char s[maxn];
    //freopen("input.txt","r",stdin);
    cin>>t;
    while(t--){
        cin>>s;
        int ans=0;
        int n=strlen(s);
        for(int i=1;i<n;i++)
        if(solve(s,i,ans)) ans=i;
        for(int i=0;i<n;i++)
        putchar(s[(i+ans)%n]);
        cout<<endl;
    }
    return 0;
}

字典序最小

标签:put   code   open   max   input   int   stdin   include   clu   

原文地址:https://www.cnblogs.com/mch5201314/p/9391706.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!