CF444C.DZY Loves Colors

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

DZY loves colors, and he enjoys painting.

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

DZY loves painting, we know. He takes up a paintbrush with color xx 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 ii currently is yy . When it is painted by this paintbrush, the color of the unit becomes xx , and the colorfulness of the unit increases by xy|x-y| .

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

  1. Paint all the units with numbers between ll and rr (both inclusive) with color xx .
  2. Ask the sum of colorfulness of the units between ll and rr (both inclusive).

Can you help DZY?

输入格式

The first line contains two space-separated integers n,m (1<=n,m<=105)n,m (1<=n,m<=10^{5}) .

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

If type=1type=1 , there will be 33 more integers l,r,x (1<=l<=r<=n; 1<=x<=108)l,r,x (1<=l<=r<=n; 1<=x<=10^{8}) in this line, describing an operation 11 .

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

输出格式

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

输入输出样例

  • 输入#1

    3 3
    1 1 2 4
    1 2 3 5
    2 1 3
    

    输出#1

    8
    
  • 输入#2

    3 4
    1 1 3 4
    2 1 1
    2 2 2
    2 3 3
    

    输出#2

    3
    2
    1
    
  • 输入#3

    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
    

    输出#3

    129
    

说明/提示

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

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

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

So the answer to the only operation of type 22 is 88 .

首页