标签:
Time Limit: 2000MS | Memory Limit: 32768KB | 64bit IO Format: %I64d & %I64u |
Description
Input
Output
Sample Input
1 10 2 1 5 2 5 9 3
Sample Output
Case 1: The total value of the hook is 24.
#include<cstdio> #include<cstdlib> #include<cstring> #include<iostream> #include<algorithm> #include<string> #include<cmath> #include<queue> #include<vector> #include<map> #include<set> #define INF 0x3f3f3f3f #define mem(a,b) memset(a,b,sizeof(a)) using namespace std; const int maxd=100000+5; const int maxn=10000+5; #define lson l,m,rt<<1 #define rson m+1,r,rt<<1 | 1 typedef long long ll; typedef pair<int,int> pii; //--------------------------- int n,op; int add[maxd<<2],sum[maxd<<2]; void pushup(int rt) { sum[rt]=sum[rt<<1]+sum[rt<<1|1]; } void pushdown(int rt,int m) { if(add[rt]) { add[rt<<1]=add[rt]; add[rt<<1|1]=add[rt]; sum[rt<<1]=(add[rt] *(m-(m>>1))); sum[rt<<1|1]=add[rt]*(m>>1); add[rt]=0; } } void build(int l,int r,int rt) { add[rt]=0; if(l==r) { sum[rt]=1; return; } int m=(l+r)>>1; build(lson); build(rson); pushup(rt); } void update(int L,int R,int c,int l,int r,int rt) { if(L<=l && r<=R) { add[rt]=c; sum[rt]=(ll) c*(r-l+1); return; } pushdown(rt,r-l+1); int m=(l+r)>>1; if(L<=m) update(L,R,c,lson); if(m<R) update(L,R,c,rson); pushup(rt); } //ll query(int L,int R,int l,int r,int rt) //{ // if(L<=l && r<=R) // { // return sum[rt]; // } // pushdown(rt,r-l+1); // int m=(l+r)>>1; // ll ret=0; // if(L<=m) ret+=query(L,R,lson); // if(m<R) ret+=query(L,R,rson); // return ret; //} int main() { int kase; freopen("1.txt","r",stdin); scanf("%d",&kase); for(int k=1;k<=kase;++k) { scanf("%d%d",&n,&op); build(1,n,1); while(op--) { int x,y,val; scanf("%d%d%d",&x,&y,&val); update(x,y,val,1,n,1); } printf("Case %d: The total value of the hook is %d.\n",k,sum[1]); } return 0; }
标签:
原文地址:http://blog.csdn.net/whoisvip/article/details/45457251