跳过正文
  1. Posts/

KMP算法学习

·3 分钟

20170801update:当时竟然没有强调next函数的含义?

next[i]的含义是,i之前的整个前缀中,最长的该前缀的前缀和后缀相同的长度。

看图:

KMP感觉是我学到现在最难懂的一个算法了QAQ 为什么你们都那么强啊,看几个小时就看懂了…

先放一波我觉得值得看的资料: kmp算法讲解(配图比较全….) kmp学习资料2

说下我对kmp算法的理解:

理解kmp算法大概分成两个部分。

一部分是理解一个naive的kmp算法,可以叫"fast slide" algorithm

思想大概就是,当mismatch发生时,我们并不是一无所有,而是知道在mismatch发生前所匹配的字符的信息的。

然后知道这些信息我们可以做什么呢?

先观察一下最最暴力的求解字符串匹配的算法:

 1//***********************************************************
 2//brute force
 3 n = T.length();
 4      m = P.length();
 5
 6      i0 = 0;              // Line P up with the first character of T
 7      i = 0;               // Start matching with first char in T
 8      j = 0;               // Start matching with first char in P
 9
10      while ( i < n )     // Not all characters used
11      {
12         if ( T[i] == P[j] )
13         {
14            /* ===============================================
15	       T[i] and P[j] match ==> try next pair
16	       =============================================== */
17            i++;           // Match next pair
18            j++;
19
20            if ( j == m )
21               return ( i0 );    // Match found at position i0 !!!
22         }
23         else
24         {  /* ===========================================
25               T[i] ≠ P[j]:
26                  1. Slide P up 1 position
27		  2. restart from beginning of string
28               =========================================== */
29            i0 = i0 + 1;   // Slide pattern P one character further
30
31            i  = i0;       // Restart matching at position i0 in T
32            j  = 0;        // Restart matching at position 0 in P
33         }
34      }
35
36      return -1;           // Return not found
37   }

这个算法低效在,当mismatch发生时,我只是往前移动了一个字符。

因此我们定义了 maxoverlap函数。。

需要特别强调的是:

这样我们就可以利用maxoverlap函数来优化当mismatch发生的时候,移动的过程。

 1  KMP( T,  P )
 2   {
 3      int i0, i, j, m, n;
 4
 5      n = T.length();
 6      m = P.length();
 7
 8      i0 = 0;              // Line P up with the first character of T
 9      i = 0;               // Start matching with first char in T
10      j = 0;               // Start matching with first char in P
11
12      while ( i < n )     // Not all characters used
13      {
14         if ( T[i] == P[j] )
15         {
16            i++;           // Match next pair
17            j++;
18
19            if ( j == m )
20               return ( i0 );    // Match found atposition i0 !!!
21         }
22         else
23         {  /* ===========================================
24	       T[i] ≠ P[j]
25               =========================================== */
26
27             if ( j == 0 )
28	     {  /* ==============================================
29	           First character already mismatched
30		   We have NO prefix info. to work with...
31		   =============================================== */
32	        i0++;        // Just slide P 1 character over
33		i = i0;      //
34		j = 0;
35             }
36	     else
37             {
38	        prefix = P[ 0..(j-1) ];  // Prefix of pattern at the mismatch
39
40	        k = MaxOverlap( prefix );
41
42	        j = k;
43	        i0 = (i - j);
44		// i is unchanged !
45             }
46         }
47      }
48
49      return -1;           // No match found
50   }

这样我们就得到了**“fast slide” algorithm算法**

但是。。。能不能再给力一点呢

我们发现,上述代码中,我们每次都要计算一次maxoverlap函数…

但是。 。一个字符串。。。它的子串个数是有限的。。。

我们能不能加速这个过程呢。。。

很容易想到预处理一波。。。

也就是求所谓的failure function ,中文应该叫失配函数…

所以第二部分就是如何快速求出失配函数

这也是我认为的kmp算法最精(nan)髓(dong)的地方。

相关文章

whust 2016 #1 D Zhenya moves from the dormitory (贪心,模拟)

·1 分钟
题目链接 傻逼模拟。。读完题就ac了。。。 1/* *********************************************** 2Author :111qqz 3Created Time :2016年08月07日 星期日 18时04分18秒 4File Name :code/whust2016/#1/D.cpp 5************************************************ */ 6#include <cstdio> 7#include <cstring> 8#include <iostream> 9#include <algorithm> 10#include <vector> 11#include <queue> 12#include <stack> 13#include <set> 14#include <map> 15#include <string> 16#include <cmath> 17#include <cstdlib> 18#include <deque> 19#include <ctime> 20#define fst first 21#define sec second 22#define lson l,m,rt<<1 23#define rson m+1,r,rt<<1|1 24#define ms(a,x) memset(a,x,sizeof(a)) 25typedef long long LL; 26#define pi pair < int ,int > 27#define MP make_pair 28using namespace std; 29const double eps = 1E-8; 30const int dx4[4]={1,0,0,-1}; 31const int dy4[4]={0,-1,1,0}; 32const int inf = 0x3f3f3f3f; 33const int N=280; 34int n,m; 35int total,adva,advb; 36struct Friend 37{ 38 int money; 39 int adv; 40}f[N]; 41struct Room 42{ 43 int type; 44 int cost; 45 int adv; 46}r[N]; 47struct Ans 48{ 49 int val; 50 int rid; 51 int fid; 52 bool operator < (Ans b)const 53 { 54 return val>b.val; 55 } 56}ans[300*300]; 57int main() 58{ 59 #ifndef ONLINE_JUDGE 60 freopen("code/in.txt","r",stdin); 61 #endif 62 cin>>total>>adva>>advb; 63 cin>>n; 64 for ( int i = 1 ; i <= n ; i++) 65 scanf("%d %d",&f[i].money,&f[i].adv); 66 scanf("%d",&m); 67 for ( int i = 1 ; i <= m ; i++) 68 scanf("%d%d%d",&r[i].type,&r[i].cost,&r[i].adv); 69 int cnt = 0 ; 70 for ( int i = 1 ; i <= m ; i++) 71 { 72 if (r[i].type==1) 73 { 74 if (r[i].cost<=total) 75 { 76 cnt++; 77 ans[cnt].val = r[i].adv+adva; 78 ans[cnt].rid = i; 79 ans[cnt].fid = -1; 80 } 81 continue; 82 } 83 else 84 { 85 for ( int j = 0 ; j <= n ; j++) 86 { 87 if (j==0) //自己住双人间 88 { 89 if (r[i].cost<=total) 90 { 91 cnt++; 92 ans[cnt].val = r[i].adv+advb; 93 ans[cnt].rid = i ; 94 ans[cnt].fid = -1; 95 } 96 } 97 else 98 { 99 if (r[i].cost<=total*2&&r[i].cost<=f[j].money*2) 100 { 101 cnt++; 102 ans[cnt].val = r[i].adv+f[j].adv; 103 ans[cnt].rid = i ; 104 ans[cnt].fid = j; 105 } 106 } 107 } 108 } 109 } 110// for ( int i = 1 ; i <= cnt ; i++) 111// { 112// printf("val:%d room: %d friend : %d \n",ans[i].val,ans[i].rid,ans[i].fid); 113// } 114 if (cnt==0) 115 { 116 puts("Forget about apartments. Live in the dormitory."); 117 }else 118 { 119 sort(ans+1,ans+cnt+1); 120 if (r[ans[1].rid].type==1) 121 { 122 printf("You should rent the apartment #%d alone.\n",ans[1].rid); 123 } 124 else 125 { 126 if (ans[1].fid==-1) 127 { 128 printf("You should rent the apartment #%d alone.\n",ans[1].rid); 129 } 130 else 131 { 132 133 printf("You should rent the apartment #%d with the friend #%d.\n",ans[1].rid,ans[1].fid); 134 135 } 136 } 137 } 138 #ifndef ONLINE_JUDGE 139 fclose(stdin); 140 #endif 141 return 0; 142}

ural 1126. Magnetic Storms (单调队列模板题)

·2 分钟
ural 1126 题意:n个数,求从第k个元素开始,求每k个元素的最大值(一共求n-k+1次) 思路:单调队列。 单调队列学习链接 其实单调队列挺容易的理解的。。。当时觉得写不明白大概是因为看到的代码写得太丑了2333