K - Transformation-hdu 4578(多操作混合区间更新)线段树
#include<algorithm>
#include<stdio.h>
using namespace std; #define lson u<<1
#define rson u<<1|1 const int MAXN = 1e5+5;
const int mod = 1e4+7; struct node
{///num表示这个区间的数(区间里面的值都相等,不相等时候为0),mul记录乘的次数,add表示需要加的数
int l, r, num, mul, add, cover;///cover 等于0的时候表示区间的值不相同,等于1表示区间进行覆盖操作,等于2表示区间的值相同
int m(){return (l+r)>>1;}
int len(){return r-l+1;}
}a[MAXN<<2]; void Up(int u)
{
if( a[lson].cover && a[rson].cover )
if( a[lson].num == a[rson].num )
a[u].num = a[lson].num, a[u].cover = 2;
}
void Down(int u)
{
if(a[u].l != a[u].r)
{
if( a[u].cover == 1 )
{
a[lson].cover = a[rson].cover = 1;
a[lson].num = a[rson].num = a[u].num;
a[lson].add = a[rson].add = 0;
a[lson].mul = a[rson].mul = 1; a[u].cover = 2, a[u].mul = 1, a[u].add = 0;
}
if( a[u].mul > 1 )
{
(a[lson].mul *= a[u].mul)%=mod, (a[rson].mul *= a[u].mul)%=mod;
(a[lson].num *= a[u].mul)%=mod, (a[rson].num *= a[u].mul)%=mod;
(a[lson].add *= a[u].mul)%=mod, (a[rson].add *= a[u].mul)%=mod; a[u].mul = 1;
} if( a[u].add )
{
(a[lson].add += a[u].add)%=mod, (a[rson].add += a[u].add)%=mod;
(a[lson].num += a[u].add)%=mod, (a[rson].num += a[u].add)%=mod; a[u].add = 0;
}
}
}
void Build(int u, int l, int r)
{
a[u].add = 0, a[u].cover = 2, a[u].mul = 1;
a[u].num = 0, a[u].l = l, a[u].r = r; if(l == r)
return ; Build(lson, l, a[u].m());
Build(rson, a[u].m()+1, r);
}
void Insert(int u, int l, int r, int op, int val)
{
if(a[u].l == l && a[u].r == r && a[u].cover)
{
if(op == 3)
a[u].add=0, a[u].cover = 1, a[u].mul = 1, a[u].num = val;
else if(op == 2)
(a[u].mul *= val)%=mod, (a[u].add *= val)%=mod, (a[u].num *= val)%=mod;
else
(a[u].add += val)%=mod, (a[u].num += val)%=mod; return ;
} Down(u); a[u].cover = 0; if(r <= a[u].m())
Insert(lson, l, r, op, val);
else if(l > a[u].m())
Insert(rson, l, r, op, val);
else
{
Insert(lson, l, a[u].m(), op, val);
Insert(rson, a[u].m()+1, r, op, val);
} Up(u);
}
int Query(int u, int l, int r, int p)
{ if(a[u].l == l && a[u].r == r && a[u].cover)
{
int ans = 1;
while(p--) (ans *= a[u].num)%=mod;
ans = (ans * a[u].len())%mod; return ans;
} Down(u); if(r <= a[u].m())
return Query(lson, l, r, p);
else if(l > a[u].m())
return Query(rson, l, r, p);
else
{
int lsum = Query(lson, l, a[u].m(), p);
int rsum = Query(rson, a[u].m()+1, r, p); return (lsum+rsum) % mod;
}
} int main()
{
int N, M; while(scanf("%d%d", &N, &M), N+M)
{
int u, v, op, c; Build(1, 1, N); while(M--)
{
scanf("%d%d%d%d", &op, &u, &v, &c); if(op != 4)
Insert(1, u, v, op, c);
else
printf("%d\n", Query(1, u, v, c));
}
} return 0;
}
K - Transformation-hdu 4578(多操作混合区间更新)线段树的更多相关文章
- Codeforces Round #535 (Div. 3) E2. Array and Segments (Hard version) 【区间更新 线段树】
传送门:http://codeforces.com/contest/1108/problem/E2 E2. Array and Segments (Hard version) time limit p ...
- K - Transformation HDU - 4578 线段树经典题(好题)
题意:区间 加 变成定值 乘 区间查询:和 平方和 立方和 思路:超级超级超级麻烦的一道题 设3个Lazy 标记分别为 change 改变mul乘 add加 优先度change>m ...
- Codeforces Round #538 (Div. 2) F 欧拉函数 + 区间修改线段树
https://codeforces.com/contest/1114/problem/F 欧拉函数 + 区间更新线段树 题意 对一个序列(n<=4e5,a[i]<=300)两种操作: 1 ...
- hdu 5700区间交(线段树)
区间交 Time Limit: 8000/4000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submiss ...
- HDU 1754:I Hate It(线段树模板)
I Hate It Time Limit: 9000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total ...
- BZOJ_4653_[Noi2016]区间_线段树+离散化+双指针
BZOJ_4653_[Noi2016]区间_线段树+离散化+双指针 Description 在数轴上有 n个闭区间 [l1,r1],[l2,r2],...,[ln,rn].现在要从中选出 m 个区间, ...
- xdoj-1324 (区间离散化-线段树求区间最值)
思想 : 1 优化:题意是覆盖点,将区间看成 (l,r)转化为( l-1,r) 覆盖区间 2 核心:dp[i] 覆盖从1到i区间的最小花费 dp[a[i].r]=min (dp[k])+a[i]s; ...
- 2017 CCPC 杭州 HDU6273J 区间修改(线段树&差分数组)
http://acm.hdu.edu.cn/downloads/CCPC2018-Hangzhou-ProblemSet.pdf 解析 线段树区间延迟更新 或 差分数组 两个数 统计2和3的最少的 ...
- 【题解】P1712 [NOI2016]区间(贪心+线段树)
[题解]P1712 [NOI2016]区间(贪心+线段树) 一个observe是,对于一个合法的方案,将其线段长度按照从大到小排序后,他极差的来源是第一个和最后一个.或者说,读入的线段按照长度分类后, ...
随机推荐
- Builder 建造者模式
简介 建造者模式的概念:将一个复杂的对象的构建与它的表示分离,使得同样的构建过程可以有不同的表示. 大概的意思,就是一套的构建过程可以有不同的产品(表示)出来.这些产品(表示)都按照这一套的构建过程被 ...
- C#解leetcode 228. Summary Ranges Easy
Given a sorted integer array without duplicates, return the summary of its ranges. For example, give ...
- js中的同步与异步
同步:提交后等待服务器的响应,接收服务器返回的数据后再执行下面的代码 异步:与上面相反,提交后继续执行下面的代码,而在后台继续监听,服务器响应后有程序做相应处理,异步的操作好处是不必等待服务器而 ...
- angular细节整理
记录angularjs中比较容易忽视的问题 1.关于动态生成ui-sref的问题 ui-route中ui-sref中的路径无法动态生成的,如果要实现动态生成ui-sref路径,可以使用$state.g ...
- Linq101-CustomSequence
using System; using System.Collections.Generic; using System.Linq; namespace Linq101 { class CustomS ...
- (转)dedecms插件开发简明教程
这篇文章主要为大家介绍了dedecms插件开发的方法,以实例形式对插件开发的步骤进行了详细的介绍,非常具有实用价值,需要的朋友可以参考下 原文:http://www.jb51.net/cms/230 ...
- 安装PHP过程中,make步骤报错:(集合网络上各种解决方法)
安装PHP过程中,make步骤报错:(集合网络上各种解决方法) (1)-liconv -o sapi/fpm/php-fpm /usr/bin/ld: cannot find -liconv coll ...
- 详解Linux服务器最大tcp连接数
网络编程在tcp应用中,server事先在某个固定端口监听,client主动发起连接,经过三路握手后建立tcp连接.那么对单机,其最大并发tcp连接数是多少? 如何标识一个TCP连接在确定最大连接数之 ...
- 微信小应用vs progressive-web-apps
https://developers.google.com/web/progressive-web-apps/
- USACO5.4-TeleCowmunication
题目大意:给出一个无向图,要求删除尽量少的点,使给定的2点间不再连通,并输出字典序最小的方案题型:图论-网络流此题难点在于建图,后面就是套网络流的模板.将点看成边,例如第i个点可以看成一条有向边< ...