• 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
  • 相关阅读:
    软件过程与建模学习之:Individuals,Motivation and Teams
    flink cdc笔记(一):flink cdc简介
    1.4 输入语句(Python)
    微服务高频热点面试题汇总
    ACM模板修改
    文心一言 VS 讯飞星火 VS chatgpt (110)-- 算法导论10.2 1题
    CUDA out of memory.(已解决)+Windows和Linux查看占用显存的程序
    WINCC C脚本编程约定
    Git创建本地项目推送至Gitee
    (附源码)springboot医疗管理系统 毕业设计 015221
  • 原文地址:https://blog.csdn.net/qq_60775360/article/details/128146019