B. Dima and Text Messages---简单字符串处理

B. Dima and Text Messages
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Seryozha has a very changeable character. This time he refused to leave the room to Dima and his girlfriend (her hame is Inna, by the way). However, the two lovebirds can always find a way to communicate. Today they are writing text messages to each other.

Dima and Inna are using a secret code in their text messages. When Dima wants to send Inna some sentence, he writes out all words, inserting a heart before each word and after the last word. A heart is a sequence of two characters: the "less" characters (<) and the digit three (3). After applying the code, a test message looks like that: <3word1<3word2<3 ... wordn<3.

Encoding doesn't end here. Then Dima inserts a random number of small English characters, digits, signs "more" and "less" into any places of the message.

Inna knows Dima perfectly well, so she knows what phrase Dima is going to send her beforehand. Inna has just got a text message. Help her find out if Dima encoded the message correctly. In other words, find out if a text message could have been received by encoding in the manner that is described above.

Input

The first line contains integer n (1 ≤ n ≤ 105) — the number of words in Dima's message. Next n lines contain non-empty words, one word per line. The words only consist of small English letters. The total length of all words doesn't exceed 105.

The last line contains non-empty text message that Inna has got. The number of characters in the text message doesn't exceed 105. A text message can contain only small English letters, digits and signs more and less.

Output

In a single line, print "yes" (without the quotes), if Dima decoded the text message correctly, and "no" (without the quotes) otherwise.

Examples
input
3
i
love
you
<3i<3love<23you<3
output
yes
input
7
i
am
not
main
in
the
family
<3i<>3am<3the<3<main<3in<3the<3><3family<3
output
no
Note

Please note that Dima got a good old kick in the pants for the second sample from the statement.


题目链接:http://codeforces.com/contest/358/problem/B


题目的意思是给你n个单词,在每个单词之间添加<3,在单词的任意地方可以添加小写字母,阿拉伯数字和< >两个符号,给出你一个字符串,问两个字符串是不是相等。

一开始想去掉给出字符串多余的字符,后来发现不行,我们可以把单词连接起来,然后判断就可以了。

代码:

#include <cstdio>
#include <cstring>
#include <iostream>
using namespace std;
char s1[2000000],s2[2000000],s[200000];
int main(){
    int n;
    scanf("%d",&n);
    int cnt=0;
    s2[cnt++]='<';
    s2[cnt++]='3';
    while(n--){
        scanf("%s",s);
        strcpy(s2+cnt,s);
        cnt+=strlen(s);
        s2[cnt++]='<';
        s2[cnt++]='3';
    }
    scanf("%s",s1);
    int s1_len=strlen(s1);
    int k=0;
    bool flag=true;
    for(int i=0,j=0;i<s1_len;i++){
        if(s1[i]==s2[j]){
            j++;
            k++;
        }
        else{
            if((s1[i]>='a'&&s1[i]<='z')||(s1[i]>='0'&&s1[i]<='9')||(s1[i]=='<')||(s1[i]=='>')){
                continue;
            }
            else{
                flag=false;
                break;
            }
        }
    }
    if(k==cnt)
        printf("yes\n");
    else
        printf("no\n");
    return 0;
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值