zoukankan      html  css  js  c++  java
  • Problem G: Keywords Search

    Problem G: Keywords Search
    Time Limit: 1 Sec Memory Limit: 128 MB
    Submit: 10 Solved: 6
    [Submit][Status][Web Board] [Edit] [TestData]
    Description
    n 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

    #include<iostream>
    #include<stdio.h>
    #include<string>
    #include<string.h>
    using namespace std;
    char b[1000000];//存放句子
    int main()
    {
        int n,gjc,i,j,len,lena,k,ji,count;
        string a[10000];
    while(scanf("%d",&n)!=EOF)  //总的测试的个数
    {
        while(n--)
        {
            cin>>gjc;//关键词的个数
        for(i=0;i<gjc;i++)
        {
            cin>>a[i];
        }
        getchar();
        gets(b);
        len=strlen(b);
        count=0;
        for(i=0;i<gjc;i++)
        {
            lena=a[i].size();
            for(j=0;j<len;j++)
            {
                ji=0;   
                for(k=0;k<lena;k++)
                {
                    if(b[j]!=a[i][k])
                    {
                        j=j-ji;
                        break;
                    }
                    else
                    {
                        ji++;
                        j++;
                    }
                }
                if(ji==lena)
                {
                    count++;
                    j=j-lena;
                }
            }
        }
        cout<<count<<endl;
    }
    }
        return 0;
    }
  • 相关阅读:
    C# git .gitignore文件
    Python常用库
    STM32移植LWIP之客户端与服务端的数据传输
    linux_cam_test文件
    DEBUG调试文件
    Linux多线程总结
    Git add命令
    Git使用总结
    C语言中可变参数的使用
    Hi3518EV300编译U-Boot和内核报错:loadlocale.c:130: _nl_intern_locale_data: Assertion `cnt < (sizeof (_nl_value_type_LC_TIME) / sizeof (_nl_value_type_LC_TIME[0]))' failed. Aborted (core dumped)
  • 原文地址:https://www.cnblogs.com/NYNU-ACM/p/4236893.html
Copyright © 2011-2022 走看看