• CodeForces - 448B Suffix Structures


    codeforces - 448b suffix structures
    Bizon the Champion isn’t just a bison. He also is a favorite of the “Bizons” team.

    At a competition the “Bizons” got the following problem: “You are given two distinct words (strings of English letters), s and t. You need to transform word s into word t”. The task looked simple to the guys because they know the suffix data structures well. Bizon Senior loves suffix automaton. By applying it once to a string, he can remove from this string any single character. Bizon Middle knows suffix array well. By applying it once to a string, he can swap any two characters of this string. The guys do not know anything about the suffix tree, but it can help them do much more.

    Bizon the Champion wonders whether the “Bizons” can solve the problem. Perhaps, the solution do not require both data structures. Find out whether the guys can solve the problem and if they can, how do they do it? Can they solve it either only with use of suffix automaton or only with use of suffix array or they need both structures? Note that any structure may be used an unlimited number of times, the structures may be used in any order.

    Input
    The first line contains a non-empty word s. The second line contains a non-empty word t. Words s and t are different. Each word consists only of lowercase English letters. Each word contains at most 100 letters.

    Output
    In the single line print the answer to the problem. Print “need tree” (without the quotes) if word s cannot be transformed into word t even with use of both suffix array and suffix automaton. Print “automaton” (without the quotes) if you need only the suffix automaton to solve the problem. Print “array” (without the quotes) if you need only the suffix array to solve the problem. Print “both” (without the quotes), if you need both data structures to solve the problem.

    It’s guaranteed that if you can solve the problem only with use of suffix array, then it is impossible to solve it only with use of suffix automaton. This is also true for suffix automaton.

    Sample 1
    Inputcopy Outputcopy
    automaton
    tomat
    automaton
    Sample 2
    Inputcopy Outputcopy
    array
    arary
    array
    Sample 3
    Inputcopy Outputcopy
    both
    hot
    both
    Sample 4
    Inputcopy Outputcopy
    need
    tree
    need tree
    Note
    In the third sample you can act like that: first transform “both” into “oth” by removing the first character using the suffix automaton and then make two swaps of the string using the suffix array and get “hot”.

    #include
    using namespace std;
    int main(void){
        string s,s1;
        cin>>s>>s1;
        map<int,int>m;
        if(s.length()<s1.length()){
            cout<<"need tree";
            return 0;
        }
            for(int i=0;i<s.length();i++){
                m[s[i]]++;
            }
            for(int i=0;i<s1.length();i++){
                if(m.count(s1[i])<=0){
                    cout<<"need tree";
                    return 0;
                }
                m[s1[i]]--;
            }
            for(auto it:m){
                if(it.second<0){
                    cout<<"need tree";
                    return 0;
                }
            }
                int len=0;
                for(int i=0;i<s1.length();i++){
                    int j,flag=0;
                    for(j=len;j<s.length();j++){
                        if(s1[i]==s[j]){
                            flag=1;
                            break;
                        }
                    }
                    if(flag==0){
                        if(s1.length()==s.length()){
                            cout<<"array";
                        }else{
                            cout<<"both";
                        } 
                        return 0;
                    }
                    len=j+1;
            }
            cout<<"automaton";   
            return 0;
    }
    //code by yxisme;
    //code by 01100_10111
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
  • 相关阅读:
    使用 python multiprocessing.Queue 出现 too many open files 错误
    模型实战(16)之StrongSort (OSNET)配合YOLOv5、v7、v8 实现多目标跟踪详解
    python的jira库的调用简单记录
    娄底锂电池隔膜研发实验室建设资料科普
    Java 接口的学习笔记
    导入jstl失败的解决方法
    【我不熟悉的javascript】commonjs和commonjs2的区别,module.exports和exports的关系
    数据结构学习系列之顺序表的查找与排序以及去重
    【C++】位图及其应用
    图像处理灰度变换
  • 原文地址:https://blog.csdn.net/qq_60775360/article/details/128146019