我是靠谱客的博主 潇洒小虾米,最近开发中收集的这篇文章主要介绍HDU 5510 Bazinga(2015亚洲区沈阳站现场赛),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5510
找到一个最大i,使得前面的字符串有一个不是他的子串。
——队友告诉我strstr能过,不知为何用kmp T了两发……又好几天不写了…….

#include <cstdio>
#include <cstring>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <queue>
#include <stack>
#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;
const int inf=0x3f3f3f3f;
const int N=2005;
int t,n,m,k;
int a[N],b[N];
char s[N][N];
int main()
{
    scanf("%d",&t);
    k=1;
    while(t--)
    {
        memset(a,0,sizeof(a));
        scanf("%d",&n);
        m=-1;
        for(int i=1; i<=n; i++)
        {
            scanf("%s",s[i]);
            for(int j=i-1; j>=1; j--)
            {
                if(a[j])
                    continue;
                if(strstr(s[i],s[j])==NULL)
                    m=i;
                else
                    a[j]=1;
            }
        }
        printf("Case #%d: %dn",k++,m);
    }
}

最后

以上就是潇洒小虾米为你收集整理的HDU 5510 Bazinga(2015亚洲区沈阳站现场赛)的全部内容,希望文章能够帮你解决HDU 5510 Bazinga(2015亚洲区沈阳站现场赛)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部