头条笔试0825-双生词

新鲜出炉的头条笔试,被虐惨了,感觉自己找不到工作了。

头条笔试0825-双生词_第1张图片
作者:Gauss
链接:https://www.nowcoder.com/discuss/98697
来源:牛客网
基本思路就是把每个字符串以及反转后的串,变成字典序最小的字符串,代码里的get函数返回字典序最小的串的起始下标,然后就是判断这些串里有没有相同的了,可以哈希,字典树,我用了暴力的排序,排完序后,比较相邻两项,看看有没有相同,并且来自于不同的串,而不是一个串和它的反串。 具体代码看: https://paste.ubuntu.com/p/PtnrYjZnvn/

#include 
#include 
using namespace std;
string s;
vectorstring, int> > g;
int get(string& s){
    int len=s.size();
    int i=0,j=1,k=0;
    while(jint ni=(i+k)%len,nj=(j+k)%len;
        if(s[ni]>s[nj]) i=max(i+k+1,j),j=i+1,k=0;
        else if(s[ni]1,k=0;
        else k++;
    }
    return i;
}
void change(string& a, string& ta, int st){
    int cur=0;
    int len=s.size();
    for(int i=st;ifor(int i=0;iint main()
{
    int t,n;
    cin>>t;
    while(t--){
        cin>>n;
        g.clear();
        for(int i=0;icin>>s;
            string tp="";
            int st=get(s);
            change(s,tp,st);
            g.push_back(make_pair(tp, i*2));
            reverse(s.begin(),s.end());
            st=get(s);
            tp="";
            change(s,tp,st);
            g.push_back(make_pair(tp, i*2+1));
        }

        for(int i=0;icout<"  "<cout<<"sort:"<for(int i=0;icout<"  "<bool flag=false;
        for(int i=0;i1;i++){
            if(g[i].first==g[i+1].first&&g[i].second/2!=g[i+1].second/2){
                flag=true;
                break;
            }
        }   
        puts(flag?"Yeah":"Sad");
    }
    return 0;
}

能想到字典序也是无敌了,膜拜大佬ing。。。


还有大佬用trie树��的思路做的。trie树是什么?trie树也叫字典树、前缀树。
可以看这个链接的简单例子http://www.cnblogs.com/huangxincheng/archive/2012/11/25/2788268.html

你可能感兴趣的:(头条笔试0825-双生词)