自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

转载 【模板】8 最长公共子序列

#include<iostream> #include<cstdio> using namespace std; int stark[100001],a[100001],map[100001],maxn,maxnn=0,x,n; int l,r,top,p; void fins(int y) { l...

2019-09-09 00:43:00 118

转载 【模板】7 快速幂||取余运算

#include<iostream> #include<cstdio> using namespace std; long long int b,p,k,ans,base; int main() { cin>>b>>p>>k; base=b; long long int pp=p;...

2019-09-09 00:39:00 166

转载 【模板】6 最小生成树(克鲁斯卡尔)

#include<iostream> #include<cstdio> #include<string.h> #include<algorithm> using namespace std; struct p { int x; int y; int t; ...

2019-09-09 00:35:00 141

转载 【模板】5 线性筛素数(埃氏筛)

#include<iostream> #include<cstdio> using namespace std; int n,m,x; bool a[10000001]; int main() { cin>>n>>m; for(int i=1;i<=n;i++) { ...

2019-09-09 00:23:00 142

转载 【模板】4 树状数组2(区间修改单点求值)

#include<iostream> #include<cstdio> using namespace std; int pd,c[500001],a[500001],x,y,k,n,m; int lowbit(int xx) { return xx&-xx; } void update(...

2019-09-09 00:11:00 151

转载 【模板】3 树状数组1(单点修改区间查询)

#include<iostream> #include<cstdio> using namespace std; int pd,c[500001],a[500001],x,y,k,n,m; int lowbit(int xx) { return xx&-xx; } void update(int xx,int y...

2019-09-09 00:06:00 154

转载 【模板】2 并查集

#include<iostream> #include<cstdio> using namespace std; int fa[10001],z,n,m,x,y; int getfather(int w) { if(fa[w]==w) return w; fa[w]=getfather(fa[w])...

2019-09-08 23:45:00 95

转载 【模板】1:tarjan求割点

1 #include<iostream> 2 #include<cstdio> 3 using namespace std; 4 int n,m,idx,cnt,total; 5 int first[200010],next[200010],to[200010],dfn[100010],low[100010]; 6 bool cut[...

2019-09-08 20:20:00 132

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除