记录编号 487999 评测结果 AAAAAAAAAA
题目名称 [USACO Jan07]Tallest Cow 最高的牛 最终得分 100
用户昵称 GravatarBFZD 是否通过 通过
代码语言 C++ 运行时间 0.014 s
提交时间 2018-02-14 11:36:39 内存使用 0.37 MiB
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <algorithm>
#define ROOT 1,1,n
#define LSON root<<1,l,mid
#define RSON root<<1|1,mid+1,r
using namespace std;
const int maxn=10000+5;
struct node
{
	int x,y;
	bool operator <(node p) const
	{
		if(x<p.x) return true;
		if(x>p.x) return false;
		return y<p.x;
	}
}a[maxn];
int b[maxn],c[maxn];
int n,pos,h,r;
void build(int root,int l,int r);
int main()
{
	freopen("tallest.in","r",stdin);
	freopen("tallest.out","w",stdout);
	scanf("%d%d%d%d",&n,&pos,&h,&r);
	for(int i=1; i<=r; i++)
	{
		int x,y;
		scanf("%d %d",&x,&y);
		if(x>y) swap(x,y);
		a[i].x=x; a[i].y=y;
	}
	sort(a+1,a+r+1);
	int tmp1=0,tmp2=0;
	for(int i=1; i<=r; i++)
	{
		int x=a[i].x,y=a[i].y;
		if(x!=tmp1 || y!=tmp2)
		{
			tmp1=x; tmp2=y;
			c[x+1]--; c[y]++;
		}
	}
	for(int i=1; i<=n; i++)
	{
		c[i]+=c[i-1];
		b[i]=h+c[i];
	}
	for(int i=1; i<=n; i++)
	{
		printf("%d\n",b[i]);
	}
	return 0;
}