For example, look at the map shown on the figure above. Level of the star number 5 is equal to 3 (it's formed by three stars with a numbers 1, 2 and 4). And the levels of the stars numbered by 2 and 4 are 1. At this map there are only one star of the level 0, two stars of the level 1, one star of the level 2, and one star of the level 3.
You are to write a program that will count the amounts of the stars of each level on a given map.
5 1 1 5 1 7 1 3 3 5 5
1 2 1 1 0
This problem has huge input data,use scanf() instead of cin to read data to avoid time limit exceed.
题意:给你一些点,给出一个点覆盖点的概念,如果点a的坐标满足其横纵坐标都小于点b,这时就叫做b覆盖a,给你一些点,然后让你写出覆盖点数为1~n-1的点的个数,由于给出的点已经按y坐标升序,所以只要按照x坐标找点就可以了,给出一点(x,y)然后找前边横坐标0~x的点的个数,这时就可以用线段树了(毕竟线段树可以计数嘛^@^)
ac代码:
#include <cstdio>
#include <iostream>
#include <cstring>
using namespace std;
#define MAX 32005
struct node
{
int left, right;
int num;
}pt[MAX*3];
int n;
int result[MAX/2];
int x, y;
void build_tree(int l, int r, int pos)
{
pt[pos].left = l;
pt[pos].right = r;
pt[pos].num = 0;
if(l == r) return ;
int mid = (l+r)/2;
build_tree(l,mid,pos*2);
build_tree(mid+1,r,pos*2+1);
}
int find(int l, int r, int pos)
{
if(pt[pos].left == l && pt[pos].right == r)
return pt[pos].num;
int sum = 0;
int mid = (pt[pos].left+pt[pos].right)/2;
if(l >mid)
sum += find(l,r,pos*2+1);
else if(r <=mid)
sum += find(l,r,2*pos);
else
sum += (find(l,mid,2*pos) + find(mid+1,r,2*pos+1));
return sum;
}
void add(int x, int pos)
{
pt[pos].num++;
if(pt[pos].left == pt[pos].right && pt[pos].right == x)
return ;
int mid = (pt[pos].left+pt[pos].right)/2;
if(x <= mid)
add(x,2*pos);
else
add(x,2*pos+1);
}
int main()
{
while(scanf("%d",&n) != EOF)
{
memset(result,0,sizeof(result));
build_tree(0,MAX,1);
for(int i = 0; i < n; ++i)
{
scanf("%d %d",&x, &y);
result[find(0,x,1)]++;
add(x,1);
}
for(int k = 0; k < n; ++k)
printf("%d\n",result[k]);
}
return 0;
}
写完一遍程序一调就炸,不知道错哪了非常郁闷呢。。。后来终于找到错误了,
if(l >mid)
sum += find(l,r,pos*2+1);
else if(r <=mid)
sum += find(l,r,2*pos);
else
sum += (find(l,mid,2*pos) + find(mid+1,r,2*pos+1));
原来错写成了
if(l >=mid)//错误处
sum += find(l,r,pos*2+1);
else if(r <mid)
sum += find(l,r,2*pos);
else
sum += (find(l,mid,2*pos) + find(mid+1,r,2*pos+1));
哎,前一段是l~mid 后一段是mid+1~r
如果按以前的错误代码岂不是把mid归到后一段了,教训啊