标签:
题目链接
http://acm.hdu.edu.cn/search.php?action=listproblem
#include <iostream> #include <algorithm> #include <stdio.h> #include <cstring> #include <queue> using namespace std; typedef long long LL; char s[600][2005]; int nex[2005]; void makeNext(char p[]) { int q,k; int m=strlen(p); nex[0]=0; for(q=1,k=0; q<m; ++q) { while(k>0&&p[q]!=p[k]) k=nex[k-1]; if(p[q]==p[k]) k++; nex[q]=k; } } int calc(int x,int y) { makeNext(s[x]); int l=strlen(s[x]); int len=strlen(s[y]); int q,k; for(q=0,k=0; q<len; q++) { while(k>0&&s[y][q]!=s[x][k]) k=nex[k-1]; if(s[y][q]==s[x][k]) k++; if(k>=l) return 1; } return 0; } int main() { int T,Case=1; cin>>T; while(T--) { int n; scanf("%d",&n); for(int i=1; i<=n; i++) scanf("%s",s[i]); int l = 1, r = 2, ans = -1; while(r <= n) { while(l < r) { if(calc(l,r)) l++; else { ans=r; break; } } r++; } printf("Case #%d: %d\n",Case++,ans); } return 0; }
标签:
原文地址:http://www.cnblogs.com/chen9510/p/5930355.html