2328专题

HDU - 2328 Corporate Identity

Description Beside other services, ACM helps companies to clearly state their “corporate identity”, which includes company logo but also other signs, like trademarks. One of such companies is Intern

hdu 2328 Corporate Identity (KMP)

链接:http://acm.hdu.edu.cn/showproblem.php?pid=2328 求公共字串,暴力+KMP 代码: #include <stdio.h>#include <string.h>#define INF 0x3f3f3f3fconst int N = 205;char s[4005][N];int next[N], n, t;void get_next