HGDB
HGDB
全部文章
模板
学习笔记(1)
未归档(2)
概念(1)
转载(1)
题解(40)
归档
标签
去牛客网
登录
/
注册
HGDB的博客
全部文章
/ 模板
(共3篇)
Sunday模板
const int maxNum = 1005;int shift[maxNum];int Sunday(const string& T, const string& P) { int n = T.length(); int m = P.length(); // 默认值,...
模板
2020-03-10
0
491
BM
#include <algorithm> #include <string> #include <iostream> using namespace std; #define SIZE 256 //字符集字符数 void generateBadChar(c...
模板
2020-03-10
0
557
ac自动机
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 2*1e6+9; int trie[maxn][26]; //字典树 int cntword[maxn]; //记...
模板
2020-03-09
1
577