Codeforces Round #338 (Div. 2)C. Running Track_Codeforces

來源:互聯網
上載者:User

C. Running Track time limit per test 1 second memory limit per test 512 megabytes input standard input output standard output

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. Examples input

abccbaabc
output
23 11 3
input
aaabrytaaaayrat
output
31 16 58 7
input
amino
output
-1
Note

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

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

/* ***********************************************Author       : rycCreated Time : 2016-08-11 ThursdayFile Name    : E:\acm\codeforces\338C.cppLanguage     : c++Copyright 2016 ryc All Rights Reserved************************************************ */#include<iostream>#include<cstdio>#include<cstdlib>#include<cstring>#include<algorithm>#include<cmath>#include<queue>#include<list>#include<vector>#include<map>#include<stack>using namespace std;const int maxn=3010;char s[maxn];char str[maxn];char s1[maxn];char temp[maxn];bool vis[maxn];struct Node{    int l,r;}ans[maxn];int main(){    scanf("%s%s",s+1,str+1);    int len1=strlen(s+1);    int len2=strlen(str+1);    for(int i=1;s[i];++i){        vis[s[i]-'a']=true;        s1[len1-i+1]=s[i];    }    for(int i=1;str[i];++i){        if(!vis[str[i]-'a']){            printf("-1\n");            return 0;        }    }s1[len1+1]=0;    int num=0;    for(int i=1;i<=len2;++i){        int cnt1=0,l1,l2,cnt2=0;bool sign=false;        for(int j=i;j<=len2;++j){            temp[cnt1++]=str[j];temp[cnt1]=0;            if(strstr(s+1,temp)){                cnt2=cnt1;                l1=strstr(s+1,temp)-s;            }            else {                if(strstr(s1+1,temp)){                    sign=true;cnt2=cnt1;                    l2=strstr(s1+1,temp)-s1;                }                else break;            }        }        if(sign){            ans[num].l=len1-l2+1;ans[num].r=(len1-l2+1)-cnt2+1;num++;        }        else {            ans[num].l=l1;ans[num].r=l1+cnt2-1;num++;        }        i=i+cnt2-1;    }    printf("%d\n",num);    for(int i=0;i<num;++i){        printf("%d %d\n",ans[i].l,ans[i].r);    }    return 0;}


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.