hdu 4391 Paint The Wall 线段树 +优化 2012 Multi-University Training Contest 10 )

http://acm.hdu.edu.cn/showproblem.php?pid=4391

题意:

刷墙, 以开始 有 n个节点,每个节点有一种颜色 ,m 次询问

 m次  输入 a,l,r,z 如果 a=1 将 l到 r 刷为 z 颜色,如果 a=2  询问 l 到 r 有 多少个 和 z 相同的 节点

官方题解是: 分段哈希,自己一开始想写 一下 ,单写着写着 就 觉得很麻烦 ,各中判断条件。。。。。

后来改为 线段树  优化了下 ,就是加了 个 mi mx  判断 查询的颜色 是否在这里面。。。。。

 

  1 #include<cstdio>
  2 #include<cstring>
  3 #include<cmath>
  4 #include<iostream>
  5 #include<algorithm>
  6 #include<set>
  7 #include<map>
  8 #include<queue>
  9 #include<vector>
 10 #include<string>
 11 #define Min(a,b) a<b?a:b
 12 #define Max(a,b) a>b?a:b
 13 #define CL(a,num) memset(a,num,sizeof(a));
 14 #define maxn  100010
 15 #define eps  1e-6
 16 #define inf 9999999
 17 #define ll  __int64
 18 using namespace std;
 19 struct node
 20 {
 21     int l;
 22     int r;
 23     int c;
 24     int mi;
 25     int mx;
 26 }p[maxn*4];
 27 int a[maxn] ;
 28 void build(int x,int l,int r)
 29 {
 30     if(l == r)
 31     {
 32          p[x].l = l;
 33          p[x].r = r;
 34          p[x].c= a[l];
 35          p[x].mi = a[l];
 36          p[x].mx = a[l];
 37          return ;
 38     }
 39     int mid = (l+r)>>1;
 40      p[x].l = l;
 41      p[x].r = r;
 42      build(x*2,l,mid);
 43      build(x*2+1,mid+1,r);
 44      if(p[x*2].c == p[x*2+1].c &&p[x*2].c != -1)p[x].c = p[x*2].c;
 45      else p[x].c = -1;
 46 
 47      p[x].mi = min(p[x*2].mi,p[x*2+1].mi);
 48      p[x].mx = max(p[x*2].mx,p[x*2+1].mx);
 49 
 50 
 51 
 52 }
 53 void change(int x,int l,int r,int z)
 54 {
 55     if(z == p[x].c)  return;
 56     if(l == p[x].l&&r == p[x].r)
 57     {
 58         p[x].c = z ;
 59         p[x].mi = z;
 60         p[x].mx = z;
 61 
 62         return  ;
 63 
 64     }
 65     int mid = (p[x].l+p[x].r)>>1;
 66     if(p[x].c != -1)
 67     {
 68         p[x*2].c = p[x].c;
 69         p[x*2+1].c = p[x].c;
 70         p[x*2].mi =p[x*2+1].mi = p[x].mi;//这两个忘了 下分了 错了 一次。。。。。。。。
 71         p[x*2].mx=p[x*2+1].mx = p[x].mx;
 72         p[x].c = -1;
 73     }
 74 
 75     if(r<=mid) change(x*2,l,r,z);
 76     else
 77     {
 78         if(l>mid)change(x*2+1,l,r,z);
 79         else
 80         {
 81             change(x*2,l,mid,z);
 82             change(x*2+1,mid+1,r,z);
 83         }
 84     }
 85      p[x].mi = min(p[x*2].mi,p[x*2+1].mi);
 86      p[x].mx = max(p[x*2].mx,p[x*2+1].mx);
 87 }
 88 int get(int x,int l,int r,int z)
 89 {
 90     if(p[x].c!=-1 &&p[x].c!=z)return 0;
 91     if(z<p[x].mi ||z>p[x].mx) return 0;
 92 
 93     if(p[x].l <= l&&p[x].r >= r&&p[x].c == z)
 94     {
 95         return r - l + 1;
 96     }
 97     int mid = (p[x].l + p[x].r)>>1;
 98 
 99     if(r<=mid) return get(x*2,l,r,z);
100     else
101     {
102         if(l>mid) return get(x*2+1,l,r,z);
103         else
104         {
105             int t1 = get(x*2,l,mid,z);
106             int t2 = get(x*2+1,mid+1,r,z);
107             return t1+t2;
108         }
109     }
110 
111 
112 
113 }
114 
115 int main()
116 {
117     int n,m,d,l,r,z,i;
118    //freopen("data.in","r",stdin);
119     while(scanf("%d%d",&n,&m)!=EOF)
120     {
121         for(i = 0; i < n;i++)
122         {
123             scanf("%d",&a[i]);
124         }
125         build(1,0,n - 1);
126         while(m--)
127         {
128             scanf("%d%d%d%d",&d,&l,&r,&z);
129             if(d == 1)
130             {
131                 change(1,l,r,z);
132             }
133             else
134             {
135                 int ans = get(1,l,r,z);
136                 printf("%d\n",ans);
137             }
138         }
139     }
140 }

 

 

转载于:https://www.cnblogs.com/acSzz/archive/2012/08/24/2654564.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/274641.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

前端监控的搭建步骤,别再一头雾水了!

大家好&#xff0c;我是若川。持续组织了8个月源码共读活动&#xff0c;感兴趣的可以 点此加我微信ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。另外…

1812:网格_指导设计:网格的历史

1812:网格The grid has long played a central role in the development of art and design due to its organizational nature; acting as a matrix for controlling the placement of elements. In art: Foreground and background. In design: Image and type. And so on.网…

HDU ACM 1728 逃离迷宫 (广搜BFS)

http://acm.hdu.edu.cn/showproblem.php?pid1728 题意:给出一张图,转弯数k,起点(x1,y1),(x2,y2)判断能不能最多只转k个弯时从起点走到终点 输入时注意起点与终点是先y后x的 思路:用point[4][2]表示方向向量,每次遍历遍历一行或者一列,遍历时要注意遇到遍历过的点要跳过去,继续…

Element使用的async-validator表单校验库源码超详细解析

大家好&#xff0c;我是若川。持续组织了8个月源码共读活动&#xff0c;感兴趣的可以 点此加我微信ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。另外…

从零手写 Vue 之响应式系统

大家好&#xff0c;我是若川。持续组织了8个月源码共读活动&#xff0c;感兴趣的可以 点此加我微信ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。另外…

WPF 分页控件应用

效果图&#xff1a; 前台代码&#xff1a; <UserControl x:Class"Layout.UI.Comm.Pager"xmlns"http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x"http://schemas.microsoft.com/winfx/2006/xaml"xmlns:mc"http:/…

李宁品牌重塑_迈伊多品牌重塑的幕后

李宁品牌重塑This post was originally published on the Maido blog.这篇文章最初发表在 Maido博客上 。 You might notice that we’ve had a little facelift at Maido. Or you might not — and that’s totally fine. What we launched at the end of last year was not r…

搭建前端监控,如何采集异常数据?

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此加我微信ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。…

产品经理如何提高创造力_如何提高产品设计师的创造力

产品经理如何提高创造力When David Kelley, Bill Moggridge, and Mike Nuttall founded IDEO, a consulting firm that would become one of the most innovative companies of the late 90s, they brought a new perspective in product development.当大卫凯利(David Kelley)…

Github上8个很棒的Vue项目

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此加我微信ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。…

域名解析文件hosts文件是什么?如何修改hosts文件?

如何修改hosts文件&#xff1f; hosts文件的位置&#xff1a;xp,2000等系统在 C:\windows\system32\drivers\etc 文件夹中找到Hosts文件并用记事本打开(Windows 9x/Me系统在C:\Windows文件夹中找)按照 ip地址 域名 的格式添加单独的一行记录。例如72.14.219.190 www.hbcms.net…

python 投资组合_成功投资组合的提示

python 投资组合Lately, I’ve had some free time during my job transition and have been reviewing a few of my friends’ design portfolios. Gradually, I found some common themes around the feedback I’ve given. And it occurred to me that others might find so…

Github上8个很棒的React项目

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此加我微信ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。…

腾讯的笔试题一道

搜罗了一些腾讯的笔试题目 题目是这样的&#xff1a;在如下8*6的矩阵中&#xff0c;请计算从A移动到B一共有多少种走法&#xff1f;要求每次只能向上挥着向右移动一格&#xff0c;并且不能经过P&#xff1b; B P …

屏幕广播系统_如何设计系统,而不是屏幕

屏幕广播系统重点 (Top highlight)Over the past several decades, rapid advances in technology have dramatically enhanced the digital customer experience and their expectations. In the face of these heightened customer expectations, the role of the Interactio…

Umi 4 发布啦

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此加我微信ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。…

Win32汇编--加载菜单资源

基本上的窗口都会有一个菜单,现在就来看看Win32汇编中是如何加载菜单的: 1>在工程中添加新的菜单资源 2>双击新添加的菜单资源进行编辑 3>菜单栏:Make->Compile RC来编译资源文件 4>导出资源中的ID号并写到数据段的.const中 5>下面是完整的源代码供参考:(工程…

Futura:从纳粹主义到月球-甚至更远

Reading the title of this article, the first thing that will come to mind for some is the funny expression of Buzz Lightyear — the Disney character — when he stretches his arms outwards and utters the famous phrase “To infinity and beyond!” before jump…

如何碎片化时间高效学习前端~

前端技术日新月异&#xff0c;发展迅速&#xff0c;作为一个与时俱进的前端工程师&#xff0c;需要不断的学习。这里强烈推荐几个前端开发工程师必备的优质公众号&#xff0c;希望对你有所帮助。大家可以像我一样&#xff0c;利用碎片时间阅读这些公众号的文章。前端从进阶到入…

爬取淘宝定价需要多久时间_如何对设计工作进行定价—停止收​​取时间并专注于价值

爬取淘宝定价需要多久时间Pricing creative work is a new concept for most freelancers who are starting their business. We are used to being paid for our time, either by an hourly wage or an annual salary. It makes it simple to quantify how much value we thin…