zoukankan      html  css  js  c++  java
  • CodeForces 625B 字符串模拟+思维

    题意 给出字符串a与b 可以将a中的单个字符改为# 问最少改多少次 a中就找不到b了

    一开始想的是用strstr 因为如果找到 可以将strstr(a,b)-a+1改成# 即改首字母 用while循环strstr来做题

    然而改第一个字母不行 因为有可能重叠 比如在lll之中找ll 改了第一个还能找出来 但是其实只改一个就可以了

    之后又想是不是能改最后一个 但是用strstr不会...

    所以最后想出了暴力扫一遍的神奇解法..因为最多 a是五次方 b是30 最多是3乘十的六次方..结果46ms就好了...

    刚才看了一眼别人的15ms的代码..利用strstr解的 长度应该不超过300bytes...果然自己该努力了...

    #include<stdio.h>
    #include<string.h>
    #include<algorithm>
    #include<map>
    #include<math.h>
    using namespace std;
    int main(){
    char s[100050];
    char q[250];
    while(~scanf("%s",s))
    {
        scanf("%s",q);
        int ans=0;
        int l1=strlen(s);
        int l2=strlen(q);
        for(int i=0;i<l1;i++)
        {
            int ok=true;
            if(i+l2>l1)
                break;
            for(int k=0;k<l2;k++)
            {
                if(s[i+k]==q[k])
                continue;
                else
                {
                    ok=false;
                    break;
                }
            }
            if(ok==true)
            {
                ans++;
                s[i+l2-1]='#';
            }
        }
        printf("%d
    ",ans);
    }
    }
    

    然后是别人的

  • 相关阅读:
    ##微信登陆,给大家分享一个第三方登陆
    ##Solr的各种版本下载
    ##redis在linux上的安装详解
    ##activeMq的简介与安装
    ##Springboot框架--配置文件介绍
    论面向服务架构及其应用
    MVC架构模式
    第八周总结
    细化架构阅读笔记
    第五周总结
  • 原文地址:https://www.cnblogs.com/rayrayrainrain/p/5204158.html
Copyright © 2011-2022 走看看