• codeforces 615C Running Track


    C. Running Track

     

    A boy named Ayrat lives on planet AMI-1511. Each inhabitant of this planet has a talent. Specifically, Ayrat loves running, moreover, just running is not enough for him. He is dreaming of making running a real art.

    First, he wants to construct the running track with coating t. On planet AMI-1511 the coating of the track is the sequence of colored blocks, where each block is denoted as the small English letter. Therefore, every coating can be treated as a string.

    Unfortunately, blocks aren't freely sold to non-business customers, but Ayrat found an infinite number of coatings s. Also, he has scissors and glue. Ayrat is going to buy some coatings s, then cut out from each of them exactly one continuous piece (substring) and glue it to the end of his track coating. Moreover, he may choose to flip this block before glueing it. Ayrat want's to know the minimum number of coating s he needs to buy in order to get the coating t for his running track. Of course, he also want's to know some way to achieve the answer.

    Input

    First line of the input contains the string s — the coating that is present in the shop. Second line contains the string t — the coating Ayrat wants to obtain. Both strings are non-empty, consist of only small English letters and their length doesn't exceed 2100.

    Output

    The first line should contain the minimum needed number of coatings n or -1 if it's impossible to create the desired coating.

    If the answer is not -1, then the following n lines should contain two integers xi and yi — numbers of ending blocks in the corresponding piece. If xi ≤ yi then this piece is used in the regular order, and if xi > yi piece is used in the reversed order. Print the pieces in the order they should be glued to get the string t.

    Sample test(s)
    input
    abc
    cbaabc
    output
    2
    3 1
    1 3
    input
    aaabrytaaa
    ayrat
    output
    3
    1 1
    6 5
    8 7
    input
    ami
    no
    output
    -1
    Note

    In the first sample string "cbaabc" = "cba" + "abc".

    In the second sample: "ayrat" = "a" + "yr" + "at".

    #include<cstdio>
    #include<cstring>
    #include<stack>
    #include<vector>
    #include<iostream>
    #include<map>
    #include<string>
    #include<algorithm>
    using namespace std;
    typedef long long ll;
    typedef unsigned long long ull;
    char s[2][2105];
    int len[2],st,ed,maxlen,l;
    vector<int>let[26];
    vector<pair<int,int> >ans;
    bool vis[2105];
    void dfs(int cur,int pos)
    {
        if(cur>=maxlen)st=l,ed=pos,maxlen=cur;
        if(cur==len[1])return;
        if(pos&&s[0][pos-1]==s[1][cur+1]&&!vis[pos-1])
            vis[pos-1]=1,dfs(cur+1,pos-1),vis[pos-1]=0;
        if(pos+1<len[0]&&s[0][pos+1]==s[1][cur+1]&&!vis[pos+1])
            vis[pos+1]=1,dfs(cur+1,pos+1),vis[pos+1]=0;
    }
    int main()
    {
        int i;
        for(i=0;i<2;i++)
        {
            scanf("%s",s[i]);
            len[i]=strlen(s[i]);
        }
        for(i=0;i<len[0];i++)
            let[s[0][i]-'a'].push_back(i);
        for(i=0;i<len[1];i++)
        {
            int n=let[s[1][i]-'a'].size();
            if(!n)break;
            maxlen=i;
            for(int j=0;j<n;j++)
            {
                memset(vis,0,sizeof(vis));
                l=let[s[1][i]-'a'][j];
                vis[l]=1;
                dfs(i,let[s[1][i]-'a'][j]);
            }
            i=maxlen;
            ans.push_back(make_pair(st+1,ed+1));
        }
        if(i<len[1])
            puts("-1");
        else
        {
            int n=ans.size();
            printf("%d
    ",n);
            for(i=0;i<n;i++)
                cout<<ans[i].first<<" "<<ans[i].second<<endl;
        }
        return 0;
    }
  • 相关阅读:
    虚函数和纯虚函数
    函数指针
    const成员函数
    随笔
    Myeclipse/eclipse的Web project改写成Maven项目
    Maven项目配置不接文件名
    Tomcat需要更改三个端口,才能在一台机器上搭载多个tomcat
    maven错误:Project configuration is not up-to-date with pom.xml
    Failed to execute goal on project MakeFriends: Could not resolve dependencie The POM for .chengpai.jtd:jtd-service-api:jar:1.0-SNAPSHOT is missing, no dependency information available
    编译器问题:运行maven,报错-Dmaven.multiModuleProjectDirectory system propery is not set. Check $M2_HOME environment variable and mvn script match.
  • 原文地址:https://www.cnblogs.com/homura/p/5122371.html
Copyright © 2020-2023  润新知