zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    显示/隐藏Mac下的隐藏文件
    遍历指定文件下所有文件,删除指定后缀文件
    ssh公钥
    设置状态栏(statusbar)的样式
    Silverlight上传下载三种方法解析(三)
    Silverlight上传下载三种方式解析(二)
    Silverlight 上传下载之三种方式解析
    一个简单的存储过程代码生成器
    .net 程序发生了一个不可捕获的异常
    n取的r的组合数问题
  • 原文地址:https://www.cnblogs.com/get-an-AC-everyday/p/4372832.html
Copyright © 2011-2022 走看看