首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
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
阅读更多...