博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 3374 String Problem
阅读量:4958 次
发布时间:2019-06-12

本文共 657 字,大约阅读时间需要 2 分钟。

最大最小表示法与KMP求循环节

最大最小表示法与KMP求循环节的模板题,

#include 
#include
#include
#include
#include
#include
using namespace std;const int MAXN=2000005;int init(){ int rv=0,fh=1; char c=getchar(); while(c<'0'||c>'9'){ if(c=='-') fh=-1; c=getchar(); } while(c>='0'&&c<='9'){ rv=(rv<<1)+(rv<<3)+c-'0'; c=getchar(); } return fh*rv;}char s[MAXN],s1[MAXN],s2[MAXN];int nxt[MAXN];int MINR(){ int i=0,j=1; int len=strlen(s)/2; while(i
s[j+k]) i=max(i+k+1,j+1); else j=max(j+k+1,i+1); } int ans=min(i,j); for(int i=0;i

转载于:https://www.cnblogs.com/Mr-WolframsMgcBox/p/7998893.html

你可能感兴趣的文章
restframework CBV试图的4种方式
查看>>
大图居中,以1920px为例
查看>>
Python3 图片转字符画
查看>>
[C陷阱和缺陷] 第7章 可移植性缺陷
查看>>
人需要治愈
查看>>
linux中configure文件默认执行结果所在位置
查看>>
Spring MVC例子
查看>>
jmeter 断言
查看>>
玩玩小爬虫——抓取时的几个小细节
查看>>
error C4996: 'fopen'
查看>>
Windows向Linux上传文件夹
查看>>
20180104-高级特性-Slice
查看>>
6个SQL Server 2005性能优化工具介绍
查看>>
nginx启动、关闭命令、重启nginx报错open() "/var/run/nginx/nginx.pid" failed
查看>>
day14 Python 内置函数、匿名函数和递归函数
查看>>
BZOJ 3097 Hash Killer I
查看>>
UINavigationController的视图层理关系
查看>>
html阴影效果怎么做,css 内阴影怎么做
查看>>
宏观经济
查看>>
综合练习:词频统计
查看>>