博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【HDU】3642 Get The Treasury
阅读量:5306 次
发布时间:2019-06-14

本文共 2128 字,大约阅读时间需要 7 分钟。

1 #include
2 #include
3 #include
4 typedef __int64 LL; 5 using namespace std; 6 #define MAXN 1010 7 struct Point 8 { 9 int x,y,z; 10 void Input() 11 { 12 scanf("%d%d%d",&x,&y,&z); 13 } 14 }; 15 struct Rectangle 16 { 17 Point a,b; 18 }; 19 struct Seg 20 { 21 int left,right,high,flag; 22 friend bool operator<(Seg a,Seg b) 23 { 24 if(a.high==b.high) 25 return a.flag
2) 41 tree[rt].more=tree[rt].two=tree[rt].one=X[R+1]-X[L]; 42 else if(tree[rt].cover==2) 43 { 44 tree[rt].one=tree[rt].two=X[R+1]-X[L]; 45 if(L==R) 46 tree[rt].more=0; 47 else 48 tree[rt].more=tree[rt<<1].one+tree[rt<<1|1].one; 49 } 50 else if(tree[rt].cover==1) 51 { 52 tree[rt].one=X[R+1]-X[L]; 53 if(L==R) 54 tree[rt].two=tree[rt].more=0; 55 else 56 { 57 tree[rt].two=tree[rt<<1].one+tree[rt<<1|1].one; 58 tree[rt].more=tree[rt<<1].two+tree[rt<<1|1].two; 59 } 60 } 61 else 62 { 63 if(L==R) 64 tree[rt].more=tree[rt].two=tree[rt].one=0; 65 else 66 { 67 tree[rt].more=tree[rt<<1].more+tree[rt<<1|1].more; 68 tree[rt].one=tree[rt<<1].one+tree[rt<<1|1].one; 69 tree[rt].two=tree[rt<<1].two+tree[rt<<1|1].two; 70 } 71 } 72 } 73 void Update(int x,int y,int flag,int L,int R,int rt) 74 { 75 if(x<=L&&R<=y) 76 { 77 tree[rt].cover+=flag; 78 PushUp(L,R,rt); 79 } 80 else 81 { 82 int mid=(L+R)>>1; 83 if(x<=mid) 84 Update(x,y,flag,L,mid,rt<<1); 85 if(y>mid) 86 Update(x,y,flag,mid+1,R,rt<<1|1); 87 PushUp(L,R,rt); 88 } 89 } 90 int main() 91 { 92 LL ans,temp; 93 int t,n,i,j,nx,nz,cnt,x,y,ca=1; 94 scanf("%d",&t); 95 while(t--) 96 { 97 scanf("%d",&n); 98 for(nx=nz=i=0;i

转载于:https://www.cnblogs.com/DrunBee/archive/2012/06/17/2552599.html

你可能感兴趣的文章
112. Path Sum
查看>>
谈首次软工作业感受_苏若
查看>>
培训班出来的你还好吗
查看>>
vim 简单配置
查看>>
LightOJ 1029 【最小生成树】
查看>>
FZU2216【二分】
查看>>
[HNOI2008]Cards
查看>>
拖拉记录上下移动--Ajax UI
查看>>
摄像头标定
查看>>
[SOF] Pointers, smart pointers or shared pointers?
查看>>
I/O-<File区别>
查看>>
cf249D
查看>>
java.util.concurrent.ExecutionException
查看>>
团队项目(一)
查看>>
centos7安装zabbix3.0超详细步骤解析
查看>>
后台数据传值得到数字需转为汉字
查看>>
库的简介和分类
查看>>
雪碧图
查看>>
洛谷P1803
查看>>
康拓展开-排列的hash
查看>>