HGDB
HGDB
全部文章
分类
学习笔记(1)
未归档(2)
概念(1)
模板(4)
转载(1)
题解(40)
归档
标签
去牛客网
登录
/
注册
HGDB的博客
TA的专栏
26篇文章
0人订阅
鸽子的每日一题
13篇文章
1423人学习
算法竞赛入门课习题
13篇文章
1267人学习
全部文章
(共5篇)
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
kmp算法
#include<bits/stdc++.h> using namespace std; typedef long long LL; typedef maxn = 1000005; #define iss ios::sync_with_stdio(false) int ans = 0; ...
模板
2020-03-08
2
714
快读快写
快读 inline int read(){ int x=0,f=1; char ch=getchar(); while(ch<'0'||ch>'9'){ if(ch=='-') f=-1; ch=getcha...
模板
2020-03-07
1
631