首页 > 其他分享 >Luogu P4915 帕秋莉的魔导书

Luogu P4915 帕秋莉的魔导书

时间:2022-10-25 15:37:10浏览次数:101  
标签:魔导 int Luogu ll tree posl P4915 include posr


题目链接:​​传送门​

动态开点是真的麻烦
跟普通线段树差别还是挺大的
题意就是区间前缀和的和除以区间长度

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <complex>
#include <algorithm>
#include <climits>
#include <queue>
#include <map>
#include <set>
#include <vector>
#include <iomanip>
#define
#define

using namespace std;
typedef long long ll;
struct node {
int l, r; ll w, f;
}tree[A];
ll a, b;
int n, m, cnt, opt, root;
void down(int k, int l, int r, int ls = 0, int rs = 0) {
if (!tree[k].l) ls = tree[k].l = ++cnt; else ls = tree[k].l;
if (!tree[k].r) rs = tree[k].r = ++cnt; else rs = tree[k].r;
int m = (l + r) >> 1;
tree[ls].f += tree[k].f; tree[rs].f += tree[k].f;
tree[ls].w += tree[k].f * (m - l + 1);
tree[rs].w += tree[k].f * (r - m);
tree[k].f = 0;
}
void add(int &k, int l, int r, int posl, int posr, ll val) {
if (!k) k = ++cnt;
if (posl > r or posr < l) return;
if (posl >= l and posr <= r) {
tree[k].w += (posr - posl + 1) * val;
tree[k].f += val;
return;
}
if (tree[k].f) down(k, posl, posr);
int m = (posl + posr) >> 1;
add(tree[k].l, l, r, posl, m, val);
add(tree[k].r, l, r, m + 1, posr, val);
tree[k].w = tree[tree[k].l].w + tree[tree[k].r].w;
}
ll ask(int k, int l, int r, int posl, int posr) {
if (posl > r or posr < l) return 0;
if (posl >= l and posr <= r) return tree[k].w;
if (tree[k].f) down(k, posl, posr);
int m = (posl + posr) >> 1; ll ans = 0;
if (tree[k].l) ans += ask(tree[k].l, l, r, posl, m);
if (tree[k].r) ans += ask(tree[k].r, l, r, m + 1, posr);
return ans;
}

int main(int argc, char const *argv[]) {
scanf("%d%d", &n, &m);
for (int i = 1; i <= n; i++) {
scanf("%d%d", &a, &b);
add(root, a, INT_MAX, 1, INT_MAX, b);
}
for (int i = 1; i <= m; i++) {
scanf("%d%d%d", &opt, &a, &b);
if (opt == 1) printf("%.4lf\n", (double)ask(1, a, b, 1, INT_MAX) / (b - a + 1));
else add(root, a, INT_MAX, 1, INT_MAX, b);
}
}


标签:魔导,int,Luogu,ll,tree,posl,P4915,include,posr
From: https://blog.51cto.com/lyle/5794773

相关文章

  • Luogu P4868 Preprefix sum
    题目链接:​​传送门​​线段树维护前缀和简单明了修改就修改当然还有更快的树状数组差分的做法*/#include<iostream>#include<cstdio>#include<cstring>#include<cs......
  • Luogu P4514 上帝造题的七分钟
    题目链接:​​传送门​​二维树状数组区间加区间求和烦人的输入#include<iostream>#include<cstdio>#include<cstring>#include<cstdlib>#include<complex>#include<......
  • Luogu P2455 [SDOI2006]线性方程组
    题目链接:​​传送门​​高斯消元可以去下面看一下​​​https://www.bilibili.com/video/av4688674​​​听视频比瞅博客有用得多这题算比较标准的板子了各种情况都有......
  • Luogu P3833 [SHOI2012]魔法树
    题目链接:​​传送门​​树剖板子区间加,子树查询树剖里查询的时候x和y地方小于号写反T了一会a,b写成dfn[a],dfn[b]竟然还有50分又WA了一会也就交了二十遍。#include<io......
  • Luogu P1438 无聊的数列
    题目链接:​​传送门​​还是区间加等差数列时隔8个月再写一遍这个题不会的来​这里#include<iostream>#include<cstdio>#include<cstring>#include<cstdlib>#include......
  • Luogu P3980 [NOI2008]志愿者招募
    题目链接:​​传送门​​别人家的建图~~~~好神奇很容易想到志愿者的起始时间和终止时间连边,费用就是他的费用但是每个点还有一个人数限制必须要有那么多个人也就是那么......
  • Luogu P2221 [HAOI2012]高速公路
    题目链接:​​传送门​​维护路径期望值,带区间修改看每条路径会被统计多少次贡献非常不显然是方案数就是上面的是分子下面的是分母现在要把上面的展开看怎么维护直接......
  • Luogu P2342 叠积木
    题目链接:​​传送门​​虽然看着很简单还是计较了好久!fa[]是这堆的最底下那块的编号siz[]是底块所在堆的sizeans[]就是ans,这块底下有多少块在find的时候沿路更新答案即......
  • Luogu P2150 [NOI2015]寿司晚宴
    题目链接:​​传送门​​太难了太难了题意就是问有多少种分案把一个到的排列分配为两组并使组间元素两两互质首先我们只需要考虑根号内的质因子对答案的影响,因为根号外的因......
  • Luogu P2515 [HAOI2010]软件安装
    题目链接:​​传送门​​很明显,如果图中有一个环那么这个环上的点必须都要选那我们一开始就直接缩点因为每个物品有价值有重量还有有重量限制所以是很明显的树上背包我......