• 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
  • 相关阅读:
    Redis + Caffeine = 王炸!!
    uniapp图片加水印
    从 Module Federation 到微组件,看微前端概念演进
    Vue中的数据筛选与搜索功能实现
    Java运算符的优先级和数据类型与运算符章节总结
    身份证二要素生成 易语言代码
    如何使用SQL系列 之 如何在SQL中使用WHERE条件语句
    相关性质和条件变量-ReentrantLock详解(2)-AQS-并发编程(Java)
    ChatGPT 学习笔记 - 1
    Java多线程interrupt、interrupted、isInterrupted详解
  • 原文地址:https://blog.csdn.net/qq_60775360/article/details/128146019