热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

南阳理工题目9:posters(离散化+线段树)

posters时间限制:1000ms|内存限制:65535KB难度:6描述ThecitizensofBytetown,AB,couldnotstandthatthec

posters

时间限制:1000 ms  |  内存限制:65535 KB难度:6
 
描述
The citizens of Bytetown, AB, could not stand that the candidates in the mayoral election campaign have been placing their electoral posters at all places at their whim. The city council has finally decided to build an electoral wall for placing the posters and introduce the following rules: 
•Every candidate can place exactly one poster on the wall. 
•All posters are of the same height equal to the height of the wall; the width of a poster can be any integer number of bytes (byte is the unit of length in Bytetown). 
•The wall is divided into segments and the width of each segment is one byte. 
•Each poster must completely cover a contiguous number of wall segments.

They have built a wall 10000000 bytes long (such that there is enough place for all candidates). When the electoral campaign was restarted, the candidates were placing their posters on the wall and their posters differed widely in width. Moreover, the candidates started placing their posters on wall segments already occupied by other posters. Everyone in Bytetown was curious whose posters will be visible (entirely or in part) on the last day before elections. 
Your task is to find the number of visible posters when all the posters are placed given the information about posters' size, their place and order of placement on the electoral wall. 
 
输入
The first line of input contains a number c giving the number of cases that follow. The first line of data for a single case contains number 1 <= n <= 10000. The subsequent n lines describe the posters in the order in which they were placed. The i-th line among the n lines contains two integer numbers li and ri which are the number of the wall segment occupied by the left end and the right end of the i-th poster, respectively. We know that for each 1 <= i <= n, 1 <= li <= ri <= 10000000. After the i-th poster is placed, it entirely covers all wall segments numbered li, li+1 ,... , ri.
输出
For each input data set print the number of visible posters after all the posters are placed. 

The picture below illustrates the case of the sample input. 
http://acm.pku.edu.cn/JudgeOnline/images/2528_1.jpg
样例输入
1
5
1 4
2 6
8 10
3 4
7 10

样例输出
4
来源
POJ
上传者
iphxer

 

  离散化+线段树

  难度较高的一道线段树的题,用了离散化处理。在南阳理工学院的oj(http://acm.nyist.net/JudgeOnline/problem.php?pid=9)上提交成功,但是在poj上提交WA,不知道为什么……听说poj上测试数据有些问题,还要算上端点两侧的点??不清楚,有知道的同仁告诉我一下,拜谢。。。

  题意

  按顺序给你一些海报,这些海报可能相互重叠,求最后没有被完全盖住的海报的数量。

  给你海报的两个端点的位置,最多有10000张海报,但是位置最多可以是10000000。

  思路

  由于涉及到区间,首先应该想到线段树,但是海报的宽度太大,如果给你一个1-10000000大小的海报怎么办?肯定MLE超内存啊(这的new多少节点)。所以就要用到离散化的方法,听起来很神秘,但理解起来很简单,例如给你两张海报,[1,6]和[3,10],排序之后是1,3,6,10,离散化为1,2,3,4,即第一个区间为[1,3],第二个区间为[2,4],如此,创建一个[1,4]的线段树即可,而不用创建[1,10]的线段树,节省了空间。

  代码

 1 #include 
2 #include
3 #include <string.h>
4 #include
5 using namespace std;
6
7 #define MAXN 20000
8 bool tree[MAXN*4+1]; //存储区间有无海报
9 short hash[10000010]; //离散化后的端点位置
10 short x[MAXN+10]; //存储海报的两个端点
11 struct post{
12 short L;
13 short R;
14 }a[MAXN+10]; //原数组
15 int cnt; //记录露在外面的海报数量
16
17 bool Insert(int d,int L,int R,int l,int r)
18 {
19 if(tree[d])
20 return false;
21 if(L==l && R==r){ //找到区间
22 tree[d] = true;
23 return true;
24 }
25
26 int mid = (L+R)/2;
27 bool res;
28 if(mid>=r){
29 res = Insert(d<<1,L,mid,l,r);
30 }
31 else if(mid<l){
32 res = Insert(d<<1|1,mid+1,R,l,r);
33 }
34 else {
35 bool f1 = Insert(d<<1,L,mid,l,mid);
36 bool f2 = Insert(d<<1|1,mid+1,R,mid+1,r);
37 res = f1||f2;
38 }
39 if(tree[d<<1] && tree[d<<1|1])
40 tree[d] = true;
41 return res;
42 }
43
44 int main()
45 {
46 int T;
47 scanf("%d",&T);
48 while(T--){
49 memset(tree,0,sizeof(tree));
50 memset(hash,0,sizeof(hash));
51 memset(x,0,sizeof(x));
52 int i,n,nCount=0;
53
54 //输入
55 scanf("%d",&n);
56 for(i=0;i){
57 scanf("%d%d",&a[i].L,&a[i].R);
58 x[nCount++] = a[i].L;
59 x[nCount++] = a[i].R;
60 }
61
62 sort(x,x+nCount);
63 nCount = unique(x,x+nCount) - x; //去重
64
65 int key=1;
66 for(i=0;i//离散化处理
67 hash[x[i]] = key;
68 if(i1){
69 if(x[i+1]-x[i]==1)
70 key++;
71 else
72 key=key+2;
73 }
74 }
75
76 cnt = 0;
77 for(i=n-1;i>=0;i--){
78 if(Insert(1,1,key,hash[a[i].L],hash[a[i].R])) //将离散化后的海报插入到线段树中
79 cnt++;
80 }
81 printf("%d\n",cnt);
82 }
83 return 0;
84 }

 

Freecode : www.cnblogs.com/yym2013


推荐阅读
  • ImmutableX Poised to Pioneer Web3 Gaming Revolution
    ImmutableX is set to spearhead the evolution of Web3 gaming, with its innovative technologies and strategic partnerships driving significant advancements in the industry. ... [详细]
  • 基于KVM的SRIOV直通配置及性能测试
    SRIOV介绍、VF直通配置,以及包转发率性能测试小慢哥的原创文章,欢迎转载目录?1.SRIOV介绍?2.环境说明?3.开启SRIOV?4.生成VF?5.VF ... [详细]
  • 深入解析 Spring Security 用户认证机制
    本文将详细介绍 Spring Security 中用户登录认证的核心流程,重点分析 AbstractAuthenticationProcessingFilter 和 AuthenticationManager 的工作原理。通过理解这些组件的实现,读者可以更好地掌握 Spring Security 的认证机制。 ... [详细]
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • Explore how Matterverse is redefining the metaverse experience, creating immersive and meaningful virtual environments that foster genuine connections and economic opportunities. ... [详细]
  • 本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ... [详细]
  • 使用 Azure Service Principal 和 Microsoft Graph API 获取 AAD 用户列表
    本文介绍了一段通用代码示例,该代码不仅能够操作 Azure Active Directory (AAD),还可以通过 Azure Service Principal 的授权访问和管理 Azure 订阅资源。Azure 的架构可以分为两个层级:AAD 和 Subscription。 ... [详细]
  • 本文深入探讨了 Java 中的 Serializable 接口,解释了其实现机制、用途及注意事项,帮助开发者更好地理解和使用序列化功能。 ... [详细]
  • 本文详细介绍了Akka中的BackoffSupervisor机制,探讨其在处理持久化失败和Actor重启时的应用。通过具体示例,展示了如何配置和使用BackoffSupervisor以实现更细粒度的异常处理。 ... [详细]
  • DNN Community 和 Professional 版本的主要差异
    本文详细解析了 DotNetNuke (DNN) 的两种主要版本:Community 和 Professional。通过对比两者的功能和附加组件,帮助用户选择最适合其需求的版本。 ... [详细]
  • 本文详细介绍了Java中org.w3c.dom.Text类的splitText()方法,通过多个代码示例展示了其实际应用。该方法用于将文本节点在指定位置拆分为两个节点,并保持在文档树中。 ... [详细]
  • 本文介绍如何使用阿里云的fastjson库解析包含时间戳、IP地址和参数等信息的JSON格式文本,并进行数据处理和保存。 ... [详细]
  • 本文介绍了如何通过配置 Android Studio 和 Gradle 来显著提高构建性能,涵盖内存分配优化、并行构建和性能分析等实用技巧。 ... [详细]
  • 在前两篇文章中,我们探讨了 ControllerDescriptor 和 ActionDescriptor 这两个描述对象,分别对应控制器和操作方法。本文将基于 MVC3 源码进一步分析 ParameterDescriptor,即用于描述 Action 方法参数的对象,并详细介绍其工作原理。 ... [详细]
  • 本文探讨了在使用Azure Active Directory进行用户身份验证时,结合AddAuthentication和RequireAuthenticatedUser的必要性及其潜在冗余问题。 ... [详细]
author-avatar
漆黑中的萤火虫
这个家伙很懒,什么也没留下!
Tags | 热门标签
RankList | 热门文章
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有