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

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
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".

/* ***********************************************
Author       : ryc
Created Time : 2016-08-11 Thursday
File Name    : E:\acm\codeforces\338C.cpp
Language     : 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;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值