zoukankan      html  css  js  c++  java
  • C++之路进阶——hdu2222(Keywords Search)

    /*
    Keywords Search

    Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)
    Total Submission(s): 47794 Accepted Submission(s): 15228


    Problem Description
    In the modern time, Search engine came into the life of everybody like Google, Baidu, etc.
    Wiskey also wants to bring this feature to his image retrieval system.
    Every image have a long description, when users type some keywords to find the image, the system will match the keywords with description of image and show the image which the most keywords be matched.
    To simplify the problem, giving you a description of image, and some keywords, you should tell me how many keywords will be match.

    Input
    First line will contain one integer means how many cases will follow by.
    Each case will contain two integers N means the number of keywords and N keywords follow. (N <= 10000)
    Each keyword will only contains characters 'a'-'z', and the length will be not longer than 50.
    The last line is the description, and the length will be not longer than 1000000.

    Output
    Print how many keywords are contained in the description.

    Sample Input
    1
    5
    she
    he
    say
    shr
    her
    yasherhs

    Sample Output
    3
    */

     1 #include<cstdio>
     2 #include<cstring>
     3 #include<iostream>
     4 #include<algorithm>
     5 
     6 using namespace std;
     7 
     8 char s[51],m[1000001];
     9 int T,n,sz,ans;
    10 int a[500001][27]/*字典树*/ ,q[500001],point[500001],danger[500001]/*单词结束标志*/;
    11 bool mark[500001];
    12 
    13 int ins()
    14 {
    15 int now=1,l=strlen(s);
    16 for (int i=0;i<l;i++)
    17 {
    18 int t=s[i]-'a'+1;
    19 if (a[now][t]) now=a[now][t];
    20 else now=a[now][t]=++sz; 
    21 }    
    22 danger[now]++;    
    23 }
    24 
    25 int acmach()
    26 {
    27 q[0]=1;point[1]=0;
    28 int now,w=1,t=0;
    29 while (t<w)
    30 {
    31 now=q[t++];    
    32 for (int i=1;i<=26;i++)    
    33 { 
    34 if (!a[now][i]) continue;
    35 int k=point[now];
    36 while (!a[k][i]) k=point[k];
    37 point[a[now][i]]=a[k][i];
    38 q[w++]=a[now][i];
    39 }
    40 }
    41 }
    42 
    43 int solve()
    44 {
    45 int k=1,l=strlen(m);
    46 for(int i=0;i<l;i++)
    47 {
    48 mark[k]=1;
    49 int t=m[i]-'a'+1;
    50 while(!a[k][t]) k=point[k];
    51 k=a[k][t];
    52 if(!mark[k])
    53 for(int j=k;j;j=point[j])
    54 {
    55 ans+=danger[j];
    56 danger[j]=0;
    57 }
    58 }
    59 printf("%d
    ",ans);
    60 }
    61 
    62 int main()
    63 {
    64 scanf("%d",&T);
    65 while(T--)
    66 {
    67 ans=0;
    68 sz=1;
    69 scanf("%d",&n);
    70 for(int i=1;i<=26;i++)a[0][i]=1;
    71 for (int i=0;i<n;i++)
    72 {
    73 scanf("%s",s);
    74 ins();
    75 } 
    76 scanf("%s",m);    
    77 acmach();
    78 solve();
    79 for(int i=1;i<=sz;i++)
    80 {
    81 point[i]=danger[i]=mark[i]=0;
    82 for(int j=1;j<=26;j++)
    83 a[i][j]=0;
    84 }
    85 }
    86 }
  • 相关阅读:
    深入了解SQLServer系统数据库工作原理(转)
    什么是动态语言(转)
    ASP.NET 2.0客户端回调的实现分析
    什么是“分布式应用系统”
    SQLServer数据库安全管理机制详解
    什么是 CLR(转)
    docker容器下的asp.net core项目发布运维
    VLAN技术
    用getDrawingCache方法获取ImageView中的图像需要注意的问题
    交换机的工作原理
  • 原文地址:https://www.cnblogs.com/grhyxzc/p/5148944.html
Copyright © 2011-2022 走看看