• cf.VK CUP 2015.C.Name Quest(贪心)


    Name Quest
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    A Martian boy is named s — he has got this name quite recently from his parents for his coming of age birthday. Now he enjoys looking for his name everywhere. If he sees that he can obtain his name from some string by removing zero or more letters (at that, the remaining letters remain in the same order), he gets happy. For example, if saba», then strings «baobab», «aabbaa», «helloabahello» make him very happy and strings «aab», «baaa» and «helloabhello» do not.

    However rather than being happy once, he loves twice as much being happy twice! So, when he got string t as a present, he wanted to cut it in two parts (the left part and the right part) so that each part made him happy.

    Help s determine the number of distinct ways to cut the given string t into two parts in the required manner.

    Input

    The first line contains string s, consisting of lowercase English letters. The length of string s is from 1 to 1000 letters.

    The second line contains string t, that also consists of lowercase English letters. The length of string t is from 1 to 106 letters.

    Output

    Print the sought number of ways to cut string t in two so that each part made s happy.

    Sample test(s)
    input
    aba baobababbah
    output
    2
    input
    mars sunvenusearthmarsjupitersaturnuranusneptune
    output
    0
    先从左到右,找到子串中的第一个母串,让l = sub[index];(对应母串的最后一个字母)
    再从右往左找第一个符合的母串,让r = sub[index] ;(对应母串的第一个字母)
    最后printf ("%d " , max (0 , r - l))
    然后我把代码写搓了 , orz
     1 #include<stdio.h>
     2 #include<string.h>
     3 #include<iostream>
     4 #include<algorithm>
     5 using namespace std;
     6 string p , s ;
     7 
     8 int main ()
     9 {
    10     //freopen ("a.txt" , "r" , stdin ) ;
    11     cin >> p ;
    12     cin >> s ;
    13     int l = 0 , r = s.size () - 1;
    14     for (int i = 0 ; i < p.size() ; i++) {
    15         while (l < s.size () && p[i] != s[l]) {
    16             l ++ ;
    17         }
    18         if (l < s.size ()) {
    19             l ++ ;
    20         }
    21         else {
    22             puts ("0") ;
    23             return 0 ;
    24         }
    25     }
    26     for (int i = p.size () - 1 ; i >= 0 ; i--) {
    27         while (r >= 0 && p[i] != s[r]) {
    28             r-- ;
    29         }
    30         if (r >= 0) {
    31             r-- ;
    32         }
    33         else {
    34             puts ("0") ;
    35             return 0 ;
    36         }
    37     }
    38     l -- , r++ ;
    39     printf ("%d
    " , max (0 , r - l) ) ;
    40 }
    View Code
  • 相关阅读:
    找出2n+1个数中不成对的那个(升级版)
    找出2n+1个数中不成对的那个
    随手记,完美的记账软件
    NOD32强制卸载工具使用方法【转】
    中医养生重在养“气”【灵枢针灸-袁医生】
    美国大学对本科生培养的12条标准【转】
    Windows软件使用Q&A集锦【持续更新】
    VLSI和ASIC的区别(转)
    Verilog 模块参数重定义(转)
    FPGA技术的一些基本概念(综合、BlackBox)(转)
  • 原文地址:https://www.cnblogs.com/get-an-AC-everyday/p/4372832.html
Copyright © 2020-2023  润新知