[JSOI2007]文本生成器 [AC自动机,dp]
标签:ems using span isa return 复杂 vector write line
时刻要记住正难则反,可以知道总数是 \(26^m\),我们可以减掉不合法的。
AC自动机上面dp,不合法的显然就是没有出现任意的一个串,根据rainy的教导
单词 \(b,bce,abcd\) 的 ACAM
然后 \(dp\) 就好了,由于点数不超过 \(n*m \leq 6000\),然后你每一位枚举复杂度是 \(m^2n\) 的
可以通过本题
// powered by c++11
// by Isaunoya
#include
#define rep(i, x, y) for (register int i = (x); i = (y); --i)
using namespace std;
using db = double;
using ll = long long;
using uint = unsigned int;
#define Tp template
using pii = pair;
#define fir first
#define sec second
Tp void cmax(T& x, const T& y) {if (x void cmin(T& x, const T& y) {if (x > y) x = y;}
#define all(v) v.begin(), v.end()
#define sz(v) ((int)v.size())
#define pb emplace_back
Tp void sort(vector& v) { sort(all(v)); } Tp void reverse(vector& v) { reverse(all(v)); }
Tp void unique(vector& v) { sort(all(v)), v.erase(unique(all(v)), v.end()); }
const int SZ = 1 >(char& c) {while (isspace(c = GETC()));return *this;}
FILEIN& operator>>(string& s) {while (isspace(ch = GETC())); s = ch;while (!isspace(ch = GETC())) s += ch;return *this;}
Tp void read(T& x) { bool sign = 0;while ((ch = GETC()) 47) x = (x >(int& x) { return read(x), *this; } FILEIN& operator>>(ll& x) { return read(x), *this; }
} in;
struct FILEOUT {const static int LIMIT = 1 LIMIT) flush();for (char c : str) quq[O++] = c;return *this;}
Tp void write(T x) {if (O > LIMIT) flush();if (x >= 1 , x = x * x % mod)
if(y & 1)
ans = ans * x % mod ;
return ans ;
}
struct ACAM {
int ch[maxn * maxm][26] , fail[maxn * maxm] , ed[maxn * maxm] , cnt = 1 ;
void ins(string s) {
int p = 1 ;
for(char x : s) {
int c = x - 'A' ;
if(! ch[p][c]) ch[p][c] = ++ cnt ;
p = ch[p][c] ;
}
ed[p] |= 1 ;
}
void build() {
queue q ;
for(int i = 0 ; i > n >> m ;
rep(i , 1 , n) {
string s ;
in >> s ;
acam.ins(s) ;
}
acam.build() ;
int ans = qpow(26 , m) ;
(ans += mod - acam.solve()) %= mod ;
out
[JSOI2007]文本生成器 [AC自动机,dp]
标签:ems using span isa return 复杂 vector write line
原文地址:https://www.cnblogs.com/Isaunoya/p/12402038.html
评论