字符串匹配(strstr)—— Bazinga ( HDU 5510 )

  • 题目链接:
    http://acm.hdu.edu.cn/showproblem.php?pid=5521

  • 分析:
    给出n个字符串,按顺序标上label:1-n,求label最大的字符串并且满足在它之前至少存在一个字符串不是它的子串

  • 题解:
    Get一个新的函数:

    • strstr(char * str1, char * str2)
    • 返回值:若str2是str1的子串,则返回str2在str1的首次出现的地址;如果str2不是str1的子串,则返回NULL。

    因为题目数据太水,所以直接匹配可以过

  • AC代码:

/*************************************************************************
    > File Name: test.cpp
    > Author: Akira 
    > Mail: qaq.febr2.qaq@gmail.com 
 ************************************************************************/

#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <cstdlib>
#include <algorithm>
#include <queue>
#include <stack>
#include <map>
#include <cmath>
#include <vector>
#include <set>
#include <list>
#include <ctime>
typedef long long LL;
typedef unsigned long long ULL;
typedef long double LD;
#define MST(a,b) memset(a,b,sizeof(a))
#define CLR(a) MST(a,0)
#define Sqr(a) ((a)*(a))
using namespace std;

#define MaxN 100000
#define MaxM MaxN*10
#define INF 0x3f3f3f3f
#define bug cout<<88888888<<endl;

int t;
int n;
char s[666][2123];
int vis[666];

int main()
{
    cin >> t;
    for(int cas=1; cas<=t; cas++)
    {
        CLR(vis);
        scanf("%d", &n);
        int Max = -1;
        for(int i=1;i<=n;i++)
        {
            scanf("%s", s[i]);
            for(int j=i-1;j>0;j--)
            {
                if(vis[j]) continue;

                if( strstr(s[i], s[j]) != NULL )
                    vis[j] = 1;
                else
                {
                    Max = i;
                }
            }       
        }
        cout<< "Case #"<< cas << ": " << Max << endl;
    }
    //system("pause");
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值