qwqqwqwq
qwqqwqwq
全部文章
分类
数学(1)
未归档(211)
归档
标签
去牛客网
登录
/
注册
qwqqwqwq的博客
全部文章
(共3篇)
P3372 【模板】线段树 1
#include<cstdio> using namespace std; struct ben { long long l,r,val,mark; }tr[400005]; long long a[100005]; void bt(long long x,long long l...
线段树
2019-08-17
0
406
区间连续长度的线段树——洛谷P2894 [USACO08FEB]酒店Hotel
https://www.luogu.org/problem/P2894 #include<cstdio> #include<iostream> using namespace std; struct ben { int lmax,rmax,len,sum,lz; }...
线段树
2019-08-18
0
387
P2572 [SCOI2010]序列操作
建树的函数不要忘了return!!! #include<iostream> #include<cstdio> #define N 100005 using namespace std; int n,m; struct seg { int l,r; int...
线段树
2019-08-19
0
355