zoukankan      html  css  js  c++  java
  • POJ--1936 All in All(水题,暴力即可)

    All in All
    Time Limit: 1000MS Memory Limit: 30000K
    Total Submissions: 30543 Accepted: 12723
    Description

    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 <string.h>
    #include <algorithm>
    #include <math.h>
    #include <stdlib.h>
    
    using namespace std;
    #define MAX 100000
    char a[MAX+5];
    char b[MAX+5];
    int main()
    {
        int pos;
        bool res;
        while(scanf("%s%s",&a,&b)!=EOF)
        {
            pos=-1;
            res=true;
            int tag;
            int len1=strlen(a);
            int len2=strlen(b);
            for(int i=0;i<len1;i++)
            {
                tag=0;
                for(int j=0;j<len2;j++)
                {
                    if(a[i]==b[j])
                    {
                        if(j>pos)
                        {
                           tag=1;
                           pos=j;
                           break;
                        }
                    }
                }
                if(tag==0)
                    res=false;
            }
            if(res==true)
                printf("Yes
    ");
            else
                printf("No
    ");
        }
    }
  • 相关阅读:
    springboot CRUD+分页(基于JPA规范)
    springboot中yml配置文件
    springboot中配置切换
    springboot中修改端口和上下文路径
    springboot中全局异常处理器
    springboot热部署
    新的表格展示利器 Bootstrap Table Ⅰ
    关于html转换为pdf案例的一些测试与思考
    java设计模式 策略模式Strategy
    java设计模式 模板方法模式Template Method
  • 原文地址:https://www.cnblogs.com/dacc123/p/8228828.html
Copyright © 2011-2022 走看看