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
  • 相关阅读:
    VisualStudio2010配置OpenCV的一种一劳永逸的方法
    QT5 Failed to load platform plugin &quot;windows&quot; 终极解决方式 命令行问题
    轻松学习JavaScript二十二:DOM编程学习之节点操作
    Eclipse中安装TestNG插件
    Java Timer 定时器的使用
    技术开发团队的项目管理工具
    python里一个class可以定义多个构造函数
    python中的多继承
    python基础之使用os.system来执行系统命令
    python下划线变量的含义
  • 原文地址:https://www.cnblogs.com/get-an-AC-everyday/p/4372832.html
Copyright © 2011-2022 走看看