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);
    }
    }
    

    然后是别人的

  • 相关阅读:
    Gym101630A Archery Tournament
    BZOJ2588 Count on a tree
    Redis主从复制
    Redis事务
    Redis持久化RDB和AOF
    设计模式之代理模式
    Spring AOP(面向切面编程)
    基于TCP和UDP的Socket通信
    Ajax无法访问回调函数seccess问题
    SpringBoot Ajax跨域问题(session共享问题)
  • 原文地址:https://www.cnblogs.com/rayrayrainrain/p/5204158.html
Copyright © 2011-2022 走看看