AC自动机
代码 #include #include using namespace std; const int maxn = 26; struct node{ // 字典树节点 int cnt; node *fail; // 失配指针 ...
代码 #include #include using namespace std; const int maxn = 26; struct node{ // 字典树节点 int cnt; node *fail; // 失配指针 ...
测试网址 html部分 textarea{width: 100%; background: lightgoldenrodyellow; font-size: 25px; overflow: auto; word-break: break-al...
参考网站 代码 #include #include using namespace std; int next[101]; void getNext(string str){ // 获取前缀表部分 string tmp = ""; ...
题目链接 需要连接校园网 Description 魔法课上Harry碰到了一点小麻烦,因为他并不像Hermione那样能够记住所有的咒语而随意的将一个棒球变成刺猬什么的,但是...
练习1 题目链接 P1060 开心的金明 题目描述 金明今天很开心,家里购置的新房就要领钥匙了,新房里有一间他自己专用的很宽敞的房间。更让他高兴的是,妈妈昨...
参考链接 参考链接 代码 #include #include #include #include #include #include using namespace std; struct chtrie{ // 字典树的结...
校OJ P1008雾霾大作战 雾霾大作战 Description 京津冀地区常发生雾霾,厦门人普遍感受不深。如今厦门有时也会发生雾霾,厦门市政府决定推行公共自行车来解决...
例题 洛谷P3374【模板】树状数组1 主要思路 参考大佬的博客 代码 #include #include using namespace std; int d[500001]; int n, m, x, y, k, com...
题目链接 https://www.luogu.org/problemnew/show/P1219 题目描述 检查一个如下的6 x 6的跳棋棋盘,有六个棋子被放置在棋盘上,使得每行、每列有且只有一个...