08
2017-08
2017-08
UVALive 7648 Passwords (AC自动机 + DP)
题意:~
思路:
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
template <class T> inline bool scan_d(T &ret) {char c; int sgn;if(c=getchar(),c==EOF...
08月08日
3,388
06
2017-07
2017-07
UVALive 5913 Dictionary Size (字典树)
题意:~
思路:
#include <bits/stdc++.h>
using namespace std;
const int N = 400050;
struct Trie {
int next[N][26];
int root, L;
int num[26];
int newnode...
07月06日
2,001
04
2016-10
2016-10
HDU 5918 Sequence I (KMP)
题目链接:点我~~
题意:给定序列a、序列b和一个整数p,要求出有多少个q使得b1,b2,…,bm恰好是aq,aq+p,…,aq+(m−1)p。
思路:将a按照MODp拆成若干个串,分别做一次 KMP.
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
t...
10月04日
2,952
24
2016-09
2016-09
HDU 5769 Substring (后缀数组)
题目链接:点我~~
题意:输入一个字符,一个串,问你输入的串中的子串中有多少个包含这个字符。
思路:不重复子串的个数是len-sa[i]-height[i],但是现在有这样的情况,就是字符是c,而sa[i]是dddcddd,那么它能贡献的值就是len-max((sa[i]+height[i]),c的位置),因为若sa[i]+height[i]的值大于c的位置...
09月24日
2,155
22
2016-09
2016-09
HDU 5880 Family View (AC自动机)
题目链接:点我~~
题意:敏感词屏蔽,给一堆敏感词,给一段文本,要求把文本中所有的敏感词用*代替。
思路:对敏感词建出AC自动机,在AC自动机上跑文本,可以得到每个前缀的最长匹配后缀,再将每一匹配到的段标记,最后再扫一遍输出。
#include <bits/stdc++.h>
using namespace std;
typedef long...
09月22日
2,258
24
2016-04
2016-04
POJ 3261 Milk Patterns (后缀数组+二分)
求可重叠的出现K次的最长重复子串~
二分枚举height数组即可。
//#pragma commmpnt(linkmpr, "/STACK:102400000,102400000")
#include <cstdio>
#include <cstring>
#include <iostream>
#include ...
04月24日
2,212