ZOJ 3957: Knuth-Morris-Pratt Algorithm

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZOJ 3957: Knuth-Morris-Pratt Algorithm相关的知识,希望对你有一定的参考价值。

Knuth-Morris-Pratt Algorithm

 

///@author Sycamore, ZJNU
///@date 4/9/2017
#include <iostream>
#include <sstream>
#include <iomanip>
#include <cmath>
#include <string>
#include <algorithm>
#include <numeric>
#include <functional>
#include <vector>
#include <set>
#include <list>
#include <stack>
#include <queue>
#include <map>
#include <algorithm>
#include <cctype>
#include<fstream>
//#define cin fin
//#define cout fout
//ifstream fin("in.txt");
//ofstream fout("out.txt");
using namespace std;
typedef vector<int> VI;
typedef pair<int, int> PII;
int main()
{
	ios::sync_with_stdio(false);
	int T;
	cin >> T;
	while (T--)
	{
		string s;
		cin >> s;
		int c = 0, pos = 0;
		while (true)
		{
			int ppos = min(s.find("cat", pos), s.find("dog", pos));
			if (ppos < pos)break;
			else
			{
				pos = ppos + 3;
				c++;
			}
		}
		cout << c << endl;
	}
	return 0;
}

 

以上是关于ZOJ 3957: Knuth-Morris-Pratt Algorithm的主要内容,如果未能解决你的问题,请参考以下文章

P3957 跳房子

bzoj3957

P3957 跳房子[二分答案][dp][单调队列]

P3957 跳房子

[poj] 3957 PIGS

单调队列P3957 跳房子