• Trie Tree(静态数组写法,好写)


    蒜头君作为蒜厂的工程师,在开发网站时不小心写出了一个 Bug:当用户输入密码时,如果既和自己的密码一致,也同时是另一个用户密码的 前缀 时,用户会跳转到 404 页。

    然而蒜头君坚称:我们的用户那么少,怎么可能触发这个 Bug……

    机智的你,能不能帮蒜头君确认一下这个 Bug 到底会不会触发呢?

    样例输入

    第一行输入一个整数 n(1n233333),表示蒜厂网站的用户数。接下来一共 n 行,每行一个由小写字母a-z组成的字符串,长度不超过 10,表示每个用户的密码。蒜厂的数据库容量太小,所有密码长度加起来小于466666。

    样例输出

    如果触发了 Bug 则输出一行Bug!,否则输出一行Good Luck!

    样例输入1

    3
    abc
    abcdef
    cdef

    样例输出1

    Bug!

    代码是最清晰的语言
    //没有动态写法快且占内存比动态写法多
    #include <iostream>
    #include <cstring>
    #include <cstdio>
    using namespace std;
    int child[233363][28];  //该值代表你是第几号前缀,0表示不存在你这个前缀
    bool is_string[233363];
    int tot=0;//记录前缀的数目
    bool insert(char *str)
    {
        int p=0,len=strlen(str);
        for(int i=0;i<len;i++)
        {
            int id=str[i]-'a';
            if(!child[p][id]) child[p][id]=++tot;
            else if(i==len-1||is_string[child[p][id]]) return true;
            p=child[p][id];
            if(i==len-1)
                is_string[tot]=true;
        }
        return false;
    }
    int main()
    {
        int t,flag=0;
        cin>>t;
        memset(child,0,sizeof(child));
        memset(is_string,false,sizeof(is_string));
        while(t--)
        {
            char str[15];
            cin>>str;
            if(insert(str))
                flag=1;
        }
        printf("%s
    ",flag==1?"Bug!":"Good Luck!");
    }
    

      

  • 相关阅读:
    上传并压缩图片
    C#使用一般处理程序(ashx)中session
    cookie记住用户名密码
    操作数组
    鼠标滚轮事件兼容写法
    table嵌套table,jquery获取tr个数
    网站性能调优实战-学相伴KuangStudy
    为什么fdisk分区第一个分区以63或者2048扇区开始?
    oracle分组查询,获取组内所有信息(拼接显式)
    oracle中对象类型搜集(object type)
  • 原文地址:https://www.cnblogs.com/onlyli/p/7232942.html
Copyright © 2020-2023  润新知