cong666
cong666
全部文章
分类
未归档(202)
归档
标签
去牛客网
登录
/
注册
CSPs blog
CSP时代降临
全部文章
(共202篇)
latex测试
\[n\] \(using\)
2019-07-24
0
366
字典树题集
uva12333 p2922 https://www.luogu.org/problemnew/show/UVA11732 UVA11362 p2580 sp4033 https://www.luogu.org/problemnew/show/P4551 https://...
2019-07-24
0
408
线段树模板(单点修改区间求和)
#include <stdio.h> #include <cstring> #include <cstdlib> #include <cmath> #include <iostream> #include <algorithm>...
2019-07-24
0
316
带权并查集模板
#include<cstdio> #include<iostream> using namespace std; int f[30005],d[30005],s[30005]; int find(int x) { if(f[x]==x)return x; in...
2019-07-24
0
522
qaq
$n$ ``` #include <cstdio> ``` </cstdio>
2019-07-23
0
361
test2
$n$ ```cpp #include<cstdio> ```
2019-07-23
0
304
ST表模板
```cpp #include<cstdio> #include<iostream> using namespace std; int f[100005][50],g[100005][50],LOG2[100005],POW2[100005...
2019-07-23
0
605
树状数组模板2(区间修改,单点查询)
```cpp #include <iostream>#include <cstdio>#define lowbit(x) x & -xusing namespace std;long long tree[500005];int n, m;void add(int x...
2019-07-23
0
528
test
$n$(n−2)$×$n=n(n−1)$
2019-07-23
0
395
树状数组模板1(单点修改,区间和查询)
切记树状数组不能处理为0的情况(lowbit无法计算,所以遇到这种情况别忘了+1) #include<cstdio> #include<iostream> using namespace std; int a[500005],b[500005]; int n; int ...
2019-07-23
0
450
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页