DZY Loves Colors

Time Limit: 2000ms
Memory Limit: 262144KB

This problem will be judged on CodeForces. Original ID: 445E
64-bit integer IO format: %I64d      Java class name: (Any)

DZY loves colors, and he enjoys painting.

On a colorful day, DZY gets a colorful ribbon, which consists of n units (they are numbered from 1 to n from left to right). The color of the i-th unit of the ribbon is i at first. It is colorful enough, but we still consider that the colorfulness of each unit is 0 at first.

DZY loves painting, we know. He takes up a paintbrush with color x and uses it to draw a line on the ribbon. In such a case some contiguous units are painted. Imagine that the color of unit i currently is y. When it is painted by this paintbrush, the color of the unit becomes x, and the colorfulness of the unit increases by |x - y|.

DZY wants to perform m operations, each operation can be one of the following:

  1. Paint all the units with numbers between l and r (both inclusive) with color x.
  2. Ask the sum of colorfulness of the units between l and r (both inclusive).

Can you help DZY?

Input

The first line contains two space-separated integers n, m (1 ≤ n, m ≤ 105).

Each of the next m lines begins with a integer type (1 ≤ type ≤ 2), which represents the type of this operation.

If type = 1, there will be 3 more integers l, r, x (1 ≤ l ≤ r ≤ n; 1 ≤ x ≤ 108) in this line, describing an operation 1.

If type = 2, there will be 2 more integers l, r (1 ≤ l ≤ r ≤ n) in this line, describing an operation 2.

 

Output

For each operation 2, print a line containing the answer — sum of colorfulness.

 

Sample Input

Input
3 3
1 1 2 4
1 2 3 5
2 1 3
Output
8
Input
3 4
1 1 3 4
2 1 1
2 2 2
2 3 3
Output
3
2
1
Input
10 6
1 1 5 3
1 2 7 9
1 10 10 11
1 3 8 12
1 1 10 3
2 1 10
Output
129

Hint

In the first sample, the color of each unit is initially [1, 2, 3], and the colorfulness is [0, 0, 0].

After the first operation, colors become [4, 4, 3], colorfulness become [3, 2, 0].

After the second operation, colors become [4, 5, 5], colorfulness become [3, 3, 2].

So the answer to the only operation of type 2 is 8.

 

Source

 
解题:线段树
 #include <bits/stdc++.h>
using namespace std;
typedef long long LL;
const int maxn = ;
struct node{
int lt,rt,color;
LL sum,len,add;
}tree[maxn<<];
void pushup(int v){
tree[v].sum = tree[v<<].sum + tree[v<<|].sum;
if(tree[v<<].color == tree[v<<|].color)
tree[v].color = tree[v<<].color;
else tree[v].color = ;
}
void pushdown(int v){
if(tree[v].add) {
tree[v<<].add += tree[v].add;
tree[v<<|].add += tree[v].add;
tree[v<<].sum += tree[v].add*tree[v<<].len;
tree[v<<|].sum += tree[v].add*tree[v<<|].len;
tree[v].add = ;
}
if(tree[v].color){
tree[v<<].color = tree[v<<|].color = tree[v].color;
tree[v].color = ;
}
}
void build(int lt,int rt,int v){
tree[v].lt = lt;
tree[v].rt = rt;
tree[v].len = rt - lt + ;
tree[v].add = ;
tree[v].sum = ;
if(lt == rt){
tree[v].color = lt;
return;
}
int mid = (lt + rt)>>;
build(lt,mid,v<<);
build(mid+,rt,v<<|);
pushup(v);
}
void update(int lt,int rt,int color,int v){
if(lt <= tree[v].lt && rt >= tree[v].rt && tree[v].color){
tree[v].add += abs(tree[v].color - color);
tree[v].sum += abs(tree[v].color - color)*tree[v].len;
tree[v].color = color;
return;
}
pushdown(v);
if(lt <= tree[v<<].rt) update(lt,rt,color,v<<);
if(rt >= tree[v<<|].lt) update(lt,rt,color,v<<|);
pushup(v);
}
LL query(int lt,int rt,int v){
if(lt <= tree[v].lt && rt >= tree[v].rt) return tree[v].sum;
pushdown(v);
LL sum = ;
if(lt <= tree[v<<].rt) sum += query(lt,rt,v<<);
if(rt >= tree[v<<|].lt) sum += query(lt,rt,v<<|);
pushup(v);
return sum;
}
int main(){
int n,m,op,x,y,color;
scanf("%d%d",&n,&m);
build(,n,);
while(m--){
scanf("%d%d%d",&op,&x,&y);
if(op == ){
scanf("%d",&color);
update(x,y,color,);
}else printf("%I64d\n",query(x,y,));
}
return ;
}

最新文章

  1. sk_buff 里的len, data_len, skb_headlen
  2. Swift之 ? 和 !
  3. input file 图片上传
  4. MSSQL日期格式化
  5. 我的bootstrap使用的历程
  6. 【Todo】深入PHP内核系列
  7. [转]HTML accesskey 属性
  8. xml学习总结(四)
  9. 源泉书签,助您管理海量收藏。www.yuanquanshuqian.com,今日更新:多标签功能已实现
  10. hdu_5908_Abelian Period(暴力)
  11. arcpy.mapping常用四大件-MapsurroundElement
  12. 创建xml文件、解析xml文件
  13. Gitbook 命令行工具
  14. IO多路复用select/poll/epoll详解以及在Python中的应用
  15. java问题排查命令
  16. Android后台处理最佳实践(Best Practices for Background Jobs)
  17. 实现接口时@Override注解问题
  18. MongoDB安装问题以及启动
  19. [翻译] CBStoreHouseRefreshControl
  20. web 安全问题(二):XSS攻击

热门文章

  1. HDU 6125 Free from square (状压DP+分组背包)
  2. [luogu4133 BJOI2012] 最多的方案 (计数dp)
  3. ArcGIS探索
  4. python 进程 multiprocessing模块
  5. JS中常用开发知识点
  6. webpack操作基础
  7. FPGA视频拼接器的放大和缩小功能
  8. hdu 4521 小明系列问题——小明序列(线段树+DP或扩展成经典的LIS)
  9. WebView简介(加速加载篇)
  10. m_Orchestrate learning system---十七、页面美观的关键是什么