题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1698
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Problem Description
In the game of DotA, Pudge’s meat hook is actually the most horrible thing for most of the heroes. The hook is made up of several consecutive metallic sticks which are of the same length.
Input
The input consists of several test cases. The first line of the input is the number of the cases. There are no more than 10 cases.
For each case, the first line contains an integer N, 1<=N<=100,000, which is the number of the sticks of Pudge’s meat hook and the second line contains an integer Q, 0<=Q<=100,000, which is the number of the operations.
Next Q lines, each line contains three integers X, Y, 1<=X<=Y<=N, Z, 1<=Z<=3, which defines an operation: change the sticks numbered from X to Y into the metal kind Z, where Z=1 represents the cupreous kind, Z=2 represents the silver kind and Z=3 represents the golden kind.
Output
For each case, print a number in a line representing the total value of the hook after the operations. Use the format in the example.
Sample Input
#include
#include
#include
#include
using namespace std;
int col[800000];
struct node
{
int l,r,sum;
}tree[800000];
void buildtree(int node,int b,int e)
{
int mid=(b+e)/2;
tree[node].l=b;
tree[node].r=e;
tree[node].sum=1;
if(b==e) return;
if(b<=mid) buildtree(node*2,b,mid);
if(e>mid) buildtree(node*2+1,mid+1,e);
}
void push_down(int node)
{
if(col[node])
{
col[node*2]=col[node*2+1]=col[node];//标记左右儿子
tree[node*2].sum=col[node]*(tree[node*2].r-tree[node*2].l+1);//左右儿子的值要改变;
tree[node*2+1].sum=col[node]*(tree[node*2+1].r-tree[node*2+1].l+1);
col[node]=0;//取消这个标记
}
}
void update(int node,int ql,int qr,int z)
{
if(tree[node].l>=ql && tree[node].r<=qr)
{
col[node]=z;
tree[node].sum=z*(tree[node].r-tree[node].l+1);
return;//这一次不改变儿子的值
}
push_down(node);//把这个标记传下去给左右儿子
int mid=(tree[node].l+tree[node].r)/2;
if(ql<=mid) update(node*2,ql,qr,z);
if(qr>mid) update(node*2+1,ql,qr,z);
tree[node].sum=tree[node*2].sum+tree[node*2+1].sum;//把当前更改的值传给父亲
}
int main()
{
int t,i;
scanf("%d",&t);
for(i=1;i<=t;++i)
{
int n;
memset(col,0,sizeof(col));
scanf("%d",&n);
buildtree(1,1,n);
int m;
scanf("%d",&m);
while(m--)
{
int x,y,z;
scanf("%d%d%d",&x,&y,&z);
update(1,x,y,z);
}
printf("Case %d: The total value of the hook is %d.\n",i,tree[1].sum);
}
return 0;
}