【POJ3348】Cows

                                                  Cows

Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 11278 Accepted: 4948

Description

Your friend to the south is interested in building fences and turning plowshares into swords. In order to help with his overseas adventure, they are forced to save money on buying fence posts by using trees as fence posts wherever possible. Given the locations of some trees, you are to help farmers try to create the largest pasture that is possible. Not all the trees will need to be used.

However, because you will oversee the construction of the pasture yourself, all the farmers want to know is how many cows they can put in the pasture. It is well known that a cow needs at least 50 square metres of pasture to survive.

Input

The first line of input contains a single integer, n (1 ≤ n ≤ 10000), containing the number of trees that grow on the available land. The next n lines contain the integer coordinates of each tree given as two integers x and y separated by one space (where -1000 ≤ x, y ≤ 1000). The integer coordinates correlate exactly to distance in metres (e.g., the distance between coordinate (10; 11) and (11; 11) is one metre).

Output

You are to output a single integer value, the number of cows that can survive on the largest field you can construct using the available trees.

Sample Input

4
0 0
0 101
75 0
75 101

Sample Output

151

 

解析:

       计算几何:凸包+多边形面积。

       关于求凸包大概就是先找到一个极坐标(瞎编的名字,就是一定在凸包上的点),以它为起点算出其他所有顶点的向量,按照一定的方向(顺时针)排序,然后贪心地加点与删点就行了。

 

代码:

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <cctype>
using namespace std;

const int Max=1010;
int n,m,id=1,tot,ans;
struct point{
	int x,y;
	point(){}
	point(const int &_x,const int &_y):x(_x),y(_y){}
	friend point operator -(const point &a,const point &b){return point(a.x-b.x,a.y-b.y);}
	friend int operator *(const point &a,const point &b){return a.x*b.y-a.y*b.x;}
	inline int calc()const{return x*x-y*y;}
}p[Max],a[Max],q[Max];

inline int get_int()
{
	int x=0,f=1;
	char c;
	for(c=getchar();(!isdigit(c))&&(c!='-');c=getchar());
	if(c=='-') f=-1,c=getchar();
	for(;isdigit(c);c=getchar()) x=(x<<3)+(x<<1)+c-'0';
	return x*f;
}

inline bool comp(const point &a,const point &b)
{
	int res=(a-p[1])*(b-p[1]);
	if(res) return res>0;
	return (a-p[1]).calc()<(b-p[1]).calc();
}

inline void init()
{
	n=get_int();
	for(int i=1;i<=n;i++)
	{
	  p[i].x=get_int(),p[i].y=get_int();
	  if(p[id].x>p[i].x||(p[id].x==p[i].x&&p[id].y>p[i].y)) id=i;
	}
	if(id!=1) swap(p[id],p[1]);
	sort(p+2,p+n+1,comp);
}

inline void solve()
{
	q[++tot]=p[1];
	for(int i=2;i<=n;i++)
	{
	  while(tot>=3&&(p[i]-q[tot-1])*(q[tot]-q[tot-1])>0) tot--;
	  q[++tot]=p[i];
	}
	q[tot+1]=q[1];
	for(int i=1;i<=tot;i++) ans+=q[i]*q[i+1];
	printf("%d",ans/100);
}

int main()
{
	init();
	solve();
	return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值