codeforces - 444c DZY Loves Colors(线段树+染色)

C. DZY Loves Colors

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

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.

Examples

input

Copy

3 31 1 2 41 2 3 52 1 3

output

Copy

8

input

Copy

3 41 1 3 42 1 12 2 22 3 3

output

Copy

321

input

Copy

10 61 1 5 31 2 7 91 10 10 111 3 8 121 1 10 32 1 10

output

Copy

129

Note

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.

题目意思:给出一个序列初始值为1~n,我们能对它有两种操作,1.l~r区间颜色染成x 然后我们能得到 abs(x-col[l])的色差 2.求l~r色差和

思路:线段树的区间更新,我们维护一个颜色,如果颜色相同时才能成段更新

#include <bits/stdc++.h>
#define ll long long
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
using namespace std;
const int maxn = 100005;
ll col[maxn<<2],lazy[maxn<<2],sum[maxn<<2];
void push_up(int rt)
{
    sum[rt]=sum[rt<<1]+sum[rt<<1|1];
    col[rt]=(col[rt<<1]==col[rt<<1|1]?col[rt<<1]:0);
}
void build(int l,int r,int rt)
{
    if(l==r)
    {
        col[rt]=l;
        return ;
    }
    int m=(l+r)>>1;
    build(lson);
    build(rson);
    push_up(rt);
}
void push_down(int rt,int len)
{
    if(col[rt])
    {
        col[rt<<1]=col[rt<<1|1]=col[rt];
        sum[rt<<1]+=lazy[rt]*(ll)(len-(len>>1));
        sum[rt<<1|1]+=lazy[rt]*(ll)(len>>1);
        lazy[rt<<1]+=lazy[rt];
        lazy[rt<<1|1]+=lazy[rt];
        col[rt]=lazy[rt]=0;
    }
}
void updata(int l,int r,int rt,int L,int R,ll val)
{
    if(L<=l&&r<=R&&col[rt])
    {
        sum[rt]+=abs(col[rt]-val)*(ll)(r-l+1);
        lazy[rt]+=abs(col[rt]-val);
        col[rt]=val;
        return ;
    }
    push_down(rt,r-l+1);
    int m=(l+r)>>1;
    if(L<=m) updata(lson,L,R,val);
    if(R>m) updata(rson,L,R,val);
    push_up(rt);
}
ll query(int l,int r,int rt,int L,int R)
{
    if(L<=l&&r<=R)
    {
        return sum[rt];
    }
    push_down(rt,r-l+1);
    ll ans=0;
    int m=(l+r)>>1;
    if(L<=m) ans+=query(lson,L,R);
    if(R>m) ans+=query(rson,L,R);
    return ans;
}
int main()
{
    int n,m,fg,l,r;
    ll x;
    scanf("%d %d",&n,&m);
    build(1,n,1);
    while(m--)
    {
        scanf("%d",&fg);
        if(fg==1)
        {
            scanf("%d %d %lld",&l,&r,&x);
            updata(1,n,1,l,r,x);
        }
        else
        {
            scanf("%d %d",&l,&r);
            printf("%lld\n",query(1,n,1,l,r));
        }
    }
}

PS:摸鱼怪的博客分享,欢迎感谢各路大牛的指点~

原文地址:https://www.cnblogs.com/MengX/p/9451934.html

时间: 2024-10-29 11:33:08

codeforces - 444c DZY Loves Colors(线段树+染色)的相关文章

Codeforces 444C DZY Loves Colors(线段树)

题目大意:Codeforces 444C DZY Loves Colors 题目大意:两种操作,1是修改区间上l到r上面德值为x,2是询问l到r区间总的修改值. 解题思路:线段树模板题. #include <cstdio> #include <cstring> #include <cstdlib> #include <algorithm> using namespace std; const int maxn = 5*1e5; typedef long lo

Codeforces 444C DZY Loves Colors 水线段树

题目链接:点击打开链接 水.. #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #include <math.h> #include <set> #include <vector> #include <map> using namespace std; #define ll long long #defi

codeforces 444 C. DZY Loves Colors(线段树)

题目大意: 1 l r x操作 讲 [l,r]上的节点涂成x颜色,并且每个节点的值都加上 |y-x| y为涂之前的颜色 2 l r  操作,求出[l,r]上的和. 思路分析: 如果一个区间为相同的颜色.那么我们才可以合并操作. 所以我们之前找相同的区间就好. 但是问题是如何合并操作. 那么我们定义一个val  表示这个区间每个位置上应该加上的值. pushdown 的时候这个值是可以相加的. #include <cstdio> #include <iostream> #includ

CodeForces 444C DZY Loves Colors

题意: 一段区间a一开始是1.2.3.4--n这样的  每次1操作可以将[l,r]覆盖成x  同时得到abs(a[i]-x)的价值  2操作查询[l,r]的价值 思路: 线段树  又是一道加深线段树理解的题 操作2是简单的求和  线段树基本操作  难点在操作1 用cov表示该区间的值(如果为0说明是混合区间)  用val表示该区间的价值和 那么在更新时就不仅仅是找到 tree[i].l==l&&tree[i].r==r 就停止了  而是继续向下递归  直到一段区间的cov>0才结束

CodeForces 444C. DZY Loves Physics(枚举+水题)

转载请注明出处:http://blog.csdn.net/u012860063/article/details/37509207 题目链接:http://codeforces.com/contest/445/problem/C DZY Loves Physics DZY loves Physics, and he enjoys calculating density. Almost everything has density, even a graph. We define the densi

Cf 444C DZY Loves Colors(线段树)

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 thei-th unit of the ribbon is i at first. It is colorful enough, but w

Cf 444C DZY Loves Colors(段树)

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 thei-th unit of the ribbon is i at first. It is colorful enough, but w

CodeForces 445E DZY Loves Colors

DZY Loves Colors Time Limit: 2000ms Memory Limit: 262144KB This problem will be judged on CodeForces. Original ID: 445E64-bit integer IO format: %I64d      Java class name: (Any) DZY loves colors, and he enjoys painting. On a colorful day, DZY gets a

codeforces 446C DZY Loves Fibonacci Numbers(数学 or 数论+线段树)

In mathematical terms, the sequence Fn of Fibonacci numbers is defined by the recurrence relation F1 = 1; F2 = 1; Fn = Fn - 1 + Fn - 2 (n > 2). DZY loves Fibonacci numbers very much. Today DZY gives you an array consisting of n integers: a1, a2, ...,