1. 程式人生 > >洛谷P3375【模板】KMP字符串匹配

洛谷P3375【模板】KMP字符串匹配

img kmp sca next .org 0ms main 是什麽 scanf

題目描述

如題,給出兩個字符串s1和s2,其中s2為s1的子串,求出s2在s1中所有出現的位置。

為了減少騙分的情況,接下來還要輸出子串的前綴數組next。

(如果你不知道這是什麽意思也不要問,去百度搜[kmp算法]學習一下就知道了。)

輸入輸出格式

輸入格式:

第一行為一個字符串,即為s1(僅包含大寫字母)

第二行為一個字符串,即為s2(僅包含大寫字母)

輸出格式:

若幹行,每行包含一個整數,表示s2在s1中出現的位置

接下來1行,包括length(s2)個整數,表示前綴數組next[i]的值。

輸入輸出樣例

輸入樣例#1:
ABABABC
ABA
輸出樣例#1:
1
3
0 0 1 

說明

時空限制:1000ms,128M

數據規模:

設s1長度為N,s2長度為M

對於30%的數據:N<=15,M<=5

對於70%的數據:N<=10000,M<=100

對於100%的數據:N<=1000000,M<=1000000

樣例說明:

技術分享

所以兩個匹配位置為1和3,輸出1、3

#include <cstdio>
#include <string>
#include <cstring>
#include <iostream>
#include <algorithm>

using namespace std;
char s1[1000010], s2[1000010
]; int nextt[1000010], n, m; void init() { int j = 0; for (int i = 2; i <= m; i++) { while (s2[j + 1] != s2[i] && j > 0) j = nextt[j]; if (s2[j + 1] == s2[i]) j++; nextt[i] = j; } } void pipei() { int j = 0; for (int i = 1
; i <= n; i++) { while (s2[j + 1] != s1[i] && j > 0) j = nextt[j]; if (s2[j + 1] == s1[i]) j++; if (j >= m) printf("%d\n", i - m + 1); } } int main() { scanf("%s", s1 + 1); scanf("%s", s2 + 1); n = strlen(s1 + 1); m = strlen(s2 + 1); init(); int cur = 1; pipei(); for (int i = 1; i <= m; i++) printf("%d ", nextt[i]); return 0; }

洛谷P3375【模板】KMP字符串匹配