luogu 4927 [1007]梦美与线段树 概率与期望 + 线段树
考场上切了不考虑没有逆元的情况(出题人真良心).
把概率都乘到一起后发现求的就是线段树上每个节点保存的权值和的平方的和.
这个的修改和查询都可以通过打标记来实现.
考场代码:
#include <cstdio>
#include <algorithm>
#define lson (now<<1)
#define rson (now<<1|1)
#define ll long long
#define setIO(s) freopen(s".in","r",stdin) , freopen(s".out","w",stdout)
using namespace std;
char *p1, *p2, buf[100000];
namespace IO
{
#define nc() (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 100000, stdin), p1 == p2) ? EOF : *p1 ++ )
int rd() {
int x = 0, f = 1;
char c = nc();
while (c < 48) {
if (c == '-')
f = -1;
c = nc();
}
while (c > 47) {
x = (((x << 2) + x) << 1) + (c ^ 48), c = nc();
}
return x * f;
}
};
const int mod=998244353,N=120005;
int arr[N],n,Q;
inline ll qpow(ll base,ll k) {
ll tmp=1;
for(;k;base=base*base%mod,k>>=1)if(k&1)tmp=tmp*base%mod;
return tmp;
}
inline ll inv(ll k) {
return qpow(k,mod-2);
}
struct Node {
int len;
ll sum,sqr,sumlen,sqrlen,lazy;
}t[N<<2];
inline void pushup(int l,int r,int now) {
int mid=(l+r)>>1;
t[now].sum=t[lson].sum;
t[now].sqr=t[lson].sqr;
t[now].sumlen=t[lson].sumlen;
t[now].sqrlen=t[lson].sqrlen;
if(r>mid) {
t[now].sum=(t[now].sum+t[rson].sum)%mod;
t[now].sqr=(t[now].sqr+t[rson].sqr)%mod;
t[now].sumlen=(t[now].sumlen+t[rson].sumlen)%mod;
t[now].sqrlen=(t[now].sqrlen+t[rson].sqrlen)%mod;
}
t[now].sqr=(t[now].sqr+(ll)t[now].sum*t[now].sum)%mod;
t[now].sumlen=(t[now].sumlen+t[now].len*t[now].sum%mod)%mod;
t[now].sqrlen=(t[now].sqrlen+(ll)t[now].len*t[now].len%mod)%mod;
}
inline void mark(int l,int r,int now,ll v)
{
t[now].lazy+=v, t[now].lazy%=mod;
t[now].sqr=(t[now].sqr+((v*v)%mod)*t[now].sqrlen%mod+2ll*v*t[now].sumlen%mod)%mod;
t[now].sumlen=(t[now].sumlen+(v*t[now].sqrlen)%mod)%mod;
t[now].sum=(t[now].sum+(t[now].len*v)%mod)%mod;
}
inline void pushdown(int l,int r,int now)
{
int mid=(l+r)>>1;
if(t[now].lazy)
{
mark(l,mid,lson,t[now].lazy);
if(r>mid) mark(mid+1,r,rson,t[now].lazy);
t[now].lazy=0;
}
}
void build(int l,int r,int now) {
t[now].len=r-l+1;
if(l==r) {
t[now].sum=arr[l];
t[now].sqr=(ll)arr[l]*arr[l]%mod;
t[now].sumlen=t[now].len*t[now].sum%mod;
t[now].sqrlen=(ll)t[now].len*t[now].len%mod;
return;
}
int mid=(l+r)>>1;
if(l<=mid) build(l,mid,lson);
if(r>mid) build(mid+1,r,rson);
pushup(l,r,now);
}
void update(int l,int r,int now,int L,int R,ll v) {
if(l>=L&&r<=R) {
mark(l,r,now,v);
return;
}
pushdown(l,r,now);
int mid=(l+r)>>1;
if(L<=mid) update(l,mid,lson,L,R,v);
if(R>mid) update(mid+1,r,rson,L,R,v);
pushup(l,r,now);
}
int main() {
using namespace IO;
int i,j,cas;
// setIO("b");
n=rd(),Q=rd();
for(i=1;i<=n;++i) arr[i]=rd();
build(1,n,1);
for(cas=1;cas<=Q;++cas) {
int opt,l,r,v;
opt=rd();
if(opt==1) {
l=rd(),r=rd(),v=rd(), update(1,n,1,l,r,v);
}
if(opt==2) {
ll a=t[1].sqr,b=t[1].sum;
printf("%lld\n",a*inv(b)%mod);
}
}
return 0;
}
luogu 4927 [1007]梦美与线段树 概率与期望 + 线段树的更多相关文章
- [Codeforces235D]Graph Game——概率与期望+基环树+容斥
题目链接: Codeforces235D 题目大意:给出一棵基环树,并给出如下点分治过程,求点数总遍历次数的期望. 点分治过程: 1.遍历当前联通块内所有点 2.随机选择联通块内一个点删除掉 3.对新 ...
- Luogu 2590 [ZJOI2008]树的统计 / HYSBZ 1036 [ZJOI2008]树的统计Count (树链剖分,LCA,线段树)
Luogu 2590 [ZJOI2008]树的统计 / HYSBZ 1036 [ZJOI2008]树的统计Count (树链剖分,LCA,线段树) Description 一棵树上有n个节点,编号分别 ...
- 【Luogu P3371&P4779】【模板】单源最短路径(线段树优化Dijkstra)
线段树优化$\rm dijkstra$ 线段树每个节点维护$[l,r]$中$dist$最小的点,删除则把该点$dist$赋值为$+\infty$,然后更新该点影响到的线段树上的其他节点即可. 可以得到 ...
- luogu P6088 [JSOI2015]字符串树 可持久化trie 线段树合并 树链剖分 trie树
LINK:字符串树 先说比较简单的正解.由于我没有从最简单的考虑答案的角度思考 所以... 下次还需要把所有角度都考察到. 求x~y的答案 考虑 求x~根+y~根-2*lca~根的答案. 那么问题变成 ...
- st表、树状数组与线段树 笔记与思路整理
已更新(2/3):st表.树状数组 st表.树状数组与线段树是三种比较高级的数据结构,大多数操作时间复杂度为O(log n),用来处理一些RMQ问题或类似的数列区间处理问题. 一.ST表(Sparse ...
- luogu P3799 妖梦拼木棒
二次联通门 : luogu P3799 妖梦拼木棒 /* luogu P3799 妖梦拼木棒 用一个桶存下所有的木棒 美剧两根短的木棒长度 后随便乘一乘就 好了.. */ #include <a ...
- 2019南昌网络赛 I. Yukino With Subinterval 树状数组套线段树
I. Yukino With Subinterval 题目链接: Problem Descripe Yukino has an array \(a_1, a_2 \cdots a_n\). As a ...
- 树(一)——线段树
问题 现在有1~30这30个数,数N被抽上的概率正比于1/sqrt(N+1),求满足这个概率分布的随机数发生器. 思路 第一,如何解决这个"概率正比"问题. 第二,如何产生满足条件 ...
- BZOJ-1036 树的统计Count 链剖线段树(模板)=(树链剖分+线段树)
潇爷昨天刚刚讲完...感觉得还可以...对着模板打了个模板...还是不喜欢用指针.... 1036: [ZJOI2008]树的统计Count Time Limit: 10 Sec Memory Lim ...
随机推荐
- 10大IT社区
技术社区导航 http://tooool.org/ 1. cnblogs 人多内容质量最高 2.csdn csdn的注册人数多,但新手多 3.java eye java eye注册用户刚突破10万,但 ...
- Cause: org.xml.sax.SAXParseException: The content of elements must consist of well-formed character data or markup.
Caused by: org.apache.ibatis.builder.BuilderException: Error creating document instance. Cause: org ...
- Gantt与PERT图区别
甘特图也就做进度管理图.他是一种简单的水平条形图,它以日历为基准描述项目任务,水平轴表示日历时间线,每一个线条表示一个任务,任务名称垂直的列在左边列中,图中的线条的起点和终点对应水平轴上的时间,分别表 ...
- 拉勾网python开发要求爬虫
#今日目标 **拉勾网python开发要求爬虫** 今天要爬取的是北京python开发的薪资水平,招聘要求,福利待遇以及公司的地理位置. 通过实践发现除了必须携带headers之外,拉勾网对ip访问频 ...
- 使用Tomcat、JNDI与ActiveMQ实现JMS消息通信服务
前言 之所以使用JNDI 是出于通用性考虑,该例子使用JMS规范提供的通用接口,没有使用具体JMS提供者的接口,这样可以保证我们编写的程序适用于任何一种JMS实现(ActiveMQ.HornetQ等) ...
- 错误代码errno值的含义
错误代码errno值的含义 查看错误代码errno是调试程序的一个重要方法.当C api函数发生异常时,一般会将errno变量(需include errno.h)赋一个整数值,不同的值表示不同的含义, ...
- Java 判断是否为回文字符串
回文字符串有两种:abcba,abccba. 代码: static boolean func(String str) { int len = str.length(); for (int i = 0; ...
- centos7进入单用户模式修改root密码
1.开机 按“e”,然后输入init=/bin/sh 2.根据提示按ctrl+x 得如下图: 3.输入mount -o remount,rw / 输入passwd设置新密码.如下图: 4.输 ...
- Qualcomm_Mobile_OpenCL.pdf 翻译-7 内存性能优化
内存优化是最重要也是最有效的OpenCL性能优化技术.大量的应用程序是内存限制而不是计算限制.所以,掌握内存优化的方法是OpenCL优化的基础.在这章中,将会回顾OpenCL的内存模型,然后是最优的实 ...
- scrapy中间件之随机user-agent
import random class UserAgentMiddleware(object): def __init__(self): self.user_agent_list = [ " ...