您的位置:首页 > 其它

poj-----(2528)Mayor's posters(线段树区间更新及区间统计+离散化)

2014-10-12 11:36 471 查看
Mayor's posters

Time Limit: 1000MSMemory Limit: 65536K
Total Submissions: 43507Accepted: 12693
Description

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.

Input

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.
Output

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.

/*poj 2528 线段树+离散化*/
//#define LOCAL
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<iostream>
#include<algorithm>

#define MAXN 10000010
#define maxn 10005
using namespace std;

struct node
{
int st;
int en;
}ss[maxn];

int lis[maxn<<1];  //离散化素组
int hash[MAXN];  //运用哈希表
int ans;
int vis[maxn];

struct post
{
int lef,rig;
int mid(){
return lef+((rig-lef)>>1);
}
int id;  //颜色种类
int type; //用于延迟
}poster[maxn<<3];

void build_seg(int left,int right,int pos)
{
poster[pos].lef=left;
poster[pos].rig=right;
poster[pos].id=0;
poster[pos].type=0;
if(left==right)  return ;
int mid=poster[pos].mid();
build_seg(left,mid,pos<<1);
build_seg(mid+1,right,pos<<1|1);
}

void Update(int left,int right,int pos,int id)
{
if(poster[pos].lef>=left&&poster[pos].rig<=right)
{
poster[pos].id=id;
poster[pos].type=id;
return ;
}
if(poster[pos].type&&poster[pos].lef!=poster[pos].rig)
{
//向下更新一次
poster[pos<<1].type=poster[pos<<1|1].type=poster[pos].type;
poster[pos<<1].id=poster[pos<<1|1].id=poster[pos].id;
poster[pos].type=0;
}
int mid=poster[pos].mid();
if(mid>=left)
Update(left,right,pos<<1,id);
if(mid<right)
Update(left,right,pos<<1|1,id);
if(poster[pos].lef!=poster[pos].rig)
{
if(poster[pos<<1].id==poster[pos<<1|1].id)
poster[pos].id=poster[pos<<1].id;
else
poster[pos].id=0;  //说明有多种可能,需要再向下查询统计
}
}

void query(int left,int right,int pos)   //进行统计
{
if(poster[pos].lef<left||poster[pos].rig>right)
return ;
if(poster[pos].id)
{
if(!vis[poster[pos].id])
{
ans++;
vis[poster[pos].id]=true;
}
return;
}
if(poster[pos].lef!=poster[pos].rig){
query(left,right,pos<<1);
query(left,right,pos<<1|1);
}
}

int main()
{
#ifdef LOCAL
freopen("test.in","r",stdin);
#endif
int cas,n;
scanf("%d",&cas);
while(cas--)
{
scanf("%d",&n);
int k=0;
memset(hash,0,sizeof(hash));
memset(vis,0,sizeof(vis)); //初始化为0表示都没有访问过
for(int i=0;i<n;i++)
{
scanf("%d %d",&ss[i].st,&ss[i].en);
lis[k++]=ss[i].st;
lis[k++]=ss[i].en;
}
sort(lis,lis+k);  //升序
int j=0;
for(int i=0;i<k;i++)
{
if(hash[lis[i]]==0)
hash[lis[i]]=++j; //编号从1起
}
build_seg(1,j,1);
for(int i=0;i<n;i++){
Update(hash[ss[i].st],hash[ss[i].en],1,i+1);
}
ans=0;
query(1,j,1);
printf("%d\n",ans);
}
return 0;
}


View Code
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: