2020牛客暑期多校训练营(第一场)F Infinite String Comparision(字符串,思维)

题目链接

题意:

你有两个字符串,他们分别可以以自身为单位无限延长,请你比较两个字符串的字典序。

思路:

我们只需要将连个字符串乘二之后再比较字典序即可。

代码:

#include
using namespace std;
#define int long long
#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
const int N=2e5+7;
const int mod=1e9+7;
const int inf=0x7fffffff;
const double pi=3.1415926535;
using namespace std;
int main()
{
    string a,b;
    while(cin>>a>>b)
    {
        a+=a;
        b+=b;
        int lena=strlen(a),lenb=strlen(b);
        int len=max(lena,lenb),ans=0;
        for(int i=0;i<len&&ans==0;i++)
        {
            if(a[i%la]<b[i%lb])
            {
                ans=-1;
            }
            if(a[i%la]>b[i%lb])
            {
                ans=1;
            }
        }
        if(ans==0)
        {
            cout<<"="<<endl;
        }
        else if(ans==-1)
        {
            cout<<"<"<<endl;
        }
        else
        {
            cout<<">"<<endl;
        }
    }
    return 0;
}


你可能感兴趣的:(思维,字符串)