All in All POJ - 1936

You have devised a new encryption technique which encodes a message by inserting between its characters randomly generated strings in a clever way. Because of pending patent issues we will not discuss in detail how the strings are generated and inserted into the original message. To validate your method, however, it is necessary to write a program that checks if the message is really encoded in the final string.

Given two strings s and t, you have to decide whether s is a subsequence of t, i.e. if you can remove characters from t such that the concatenation of the remaining characters is s.
Input
The input contains several testcases. Each is specified by two strings s, t of alphanumeric ASCII characters separated by whitespace.The length of s and t will no more than 100000.
Output
For each test case output “Yes”, if s is a subsequence of t,otherwise output “No”.
Sample Input
sequence subsequence
person compression
VERDI vivaVittorioEmanueleReDiItalia
caseDoesMatter CaseDoesMatter
Sample Output
Yes
No
Yes
No

好久没做过这么水的题了。。。好开心

#include <iostream>
#include <stdio.h>

class Astack
{
    int top;
    char sta[100000];
public:
    Astack(){top = -1;}
    ~Astack(){}
    int isEmpty(){return top == -1;}
    void push(char c){sta[++top] = c;}
    char peek(){return sta[top];}
    char pop(){return sta[top--];}
};
int main()
{
    char c;
    c = getchar();
    while(c != EOF)
    {
        Astack in,out;
        while(c != ' ')
        {
            in.push(c);
            c = getchar();
        }
        c = getchar();
        while(c != '\n' && c != EOF)
        {
            out.push(c);
            c = getchar();
        }



        while(!out.isEmpty())
        {
            if(out.peek() == in.peek())
            {
                in.pop();
            }
            out.pop();
        }
        if(in.isEmpty())
            printf("Yes");
        else
            printf("No");
        printf("\n");


        if(c != EOF)
        c = getchar();
    }
    return 0;
}

发布了39 篇原创文章 · 获赞 4 · 访问量 5750

猜你喜欢

转载自blog.csdn.net/weixin_45725137/article/details/105320924
ALL