zoukankan      html  css  js  c++  java
  • Codeforces Round #349 (Div. 2) C. Reberland Linguistics (DP)

    C. Reberland Linguistics

    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    First-rate specialists graduate from Berland State Institute of Peace and Friendship. You are one of the most talented students in this university. The education is not easy because you need to have fundamental knowledge in different areas, which sometimes are not related to each other.

    For example, you should know linguistics very well. You learn a structure of Reberland language as foreign language. In this language words are constructed according to the following rules. First you need to choose the "root" of the word — some string which has more than 4 letters. Then several strings with the length 2 or 3 symbols are appended to this word. The only restriction — it is not allowed to append the same string twice in a row. All these strings are considered to be suffixes of the word (this time we use word "suffix" to describe a morpheme but not the few last characters of the string as you may used to).

    Here is one exercise that you have found in your task list. You are given the word s. Find all distinct strings with the length 2 or 3, which can be suffixes of this word according to the word constructing rules in Reberland language.

    Two strings are considered distinct if they have different length or there is a position in which corresponding characters do not match.

    Let's look at the example: the word abacabaca is given. This word can be obtained in the following ways: , where the root of the word is overlined, and suffixes are marked by "corners". Thus, the set of possible suffixes for this word is {aca, ba, ca}.

    Input

    The only line contains a string s (5 ≤ |s| ≤ 104) consisting of lowercase English letters.

    Output

    On the first line print integer k — a number of distinct possible suffixes. On the next k lines print suffixes.

    Print suffixes in lexicographical (alphabetical) order.

    Examples
    input
    abacabaca
    output
    3
    aca
    ba
    ca
    input
    abaca
    output
    0
    Note

    The first test was analysed in the problem statement.

    In the second example the length of the string equals 5. The length of the root equals 5, so no string can be used as a suffix.

     写了两天,才搞定。

    in a row 是后来才注意到的,但是我还是认为不会影响什么,一直认为以前出现过就不行,最后问了学姐,给了一组样例。

    zzzzz cf aaa aa aaa,不能出现相邻的相同的。

    一下子考虑四个或者六个。

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <set>
    using namespace std;
    const int maxn = 1e4+5;
    int dp[maxn][5];
    set<string>ans;
    int main()
    {
        string s;
        cin>>s;
        int n = s.size();
        if(n<=6)
        {
            printf("0
    ");
            return 0;
        }
        if(n>=7)
        {
            string s1="";
            s1 = s1+s[n-2]+s[n-1];
            ans.insert(s1);
            dp[n-2][2] = 1;
        }
        if(n>=8)
        {
            string s1;
            s1 = s1+s[n-3]+s[n-2]+s[n-1];
            ans.insert(s1);
            dp[n-3][3] = 1;
        }
        for(int i=n-4;i>=5;i--)
        {
            string s1="",s2 = "";
            s1 = s1+s[i]+s[i+1];
            s2 = s2+s[i+2]+s[i+3];
           // cout<<s1<<endl;
           // cout<<s2<<endl;
            if((s1!=s2&&dp[i+2][2])||dp[i+2][3])
            {
                dp[i][2] = 1;
                ans.insert(s1);
             //   cout<<s1<<endl;
            }
            s1 = "";
            s2 = "";
            s1 = s1+s[i]+s[i+1]+s[i+2];
          //  cout<<s1<<endl;
            s2 = s2+s[i+3]+s[i+4]+s[i+5];
            if((s1!=s2&&dp[i+3][3])||dp[i+3][2])
            {
                dp[i][3] = 1;
                ans.insert(s1);
             //   cout<<s1<<endl;
            }
        }
        printf("%d
    ",ans.size());
        for(set<string>::iterator it = ans.begin();it!=ans.end();it++)
        {
            cout<<*it<<endl;
        }
        return 0;
    }
  • 相关阅读:
    python 10大算法之一 LinearRegression 笔记
    Android+openCV 动态人脸检测
    ubuntu+github配置使用
    Android+openCV人脸检测2(静态图片)
    Android CameraManager 类
    Android人脸检测1(静态图片)
    Android读写配置2
    Git分支(branch)
    mvn
    git 停止跟踪某一个文件
  • 原文地址:https://www.cnblogs.com/littlepear/p/5844144.html
Copyright © 2011-2022 走看看