cf #308 D. Vanya and Triangles (几何)

题目:http://codeforces.com/contest/554/problem/D

题意:给你n个点的坐标,n<2000,问这n个点能形成多少个三角形。

分析:简单的几何题。枚举所有直线,求出k和b,将k和b映射成hash值,存起来。然后枚举直线,求出所有不能做成三角形的情况,再用所有的可能情况减掉这些不可能的情况即可。

重点不在上面。在于精度问题。已经在代码里面标出来了。

代码:

#include <bits/stdc++.h>
using namespace std;

typedef long long LL;
typedef unsigned long long ULL;
const LL INF = 1E3+9;

const int maxn = 2007;

inline int MyAbs(int a)
{
	return a>0?a:-a;
}

inline LL cal(int x)
{
	return x*(x-1ll)*(x-2ll)/6ll;
}

inline LL getHash(double d)
{
	return LL(d*1E14);
}

typedef pair <LL,LL> pll;

map <pll ,set <int> > Map;
int x[maxn],y[maxn];
int main()
{
//	freopen("1.txt","r",stdin);
	int n;
	scanf("%d",&n);
	for(int i=1;i<=n;i++)
		scanf("%d%d",&x[i],&y[i]);
	for(int i=1;i<=n;i++)
	{
		for(int j=i+1;j<=n;j++)
		{
			int dx=x[i]-x[j];
			int dy=y[i]-y[j];
			static pll key;
			if(0==dx)
				key=make_pair(getHash(INF),getHash(x[i]));
			else
			{
				double k=double(dy)/dx;
				double b=(y[i]*x[j]-y[j]*x[i])/double(x[i]-x[j]);
				//double b=y[i]-k*x[i]  这样写会有比较严重的精度损失  
				key = make_pair(getHash(k),getHash(b));
			}
			Map[key].insert(i);
			Map[key].insert(j);
		}
	}
	LL ans=cal(n);
	for(const auto &it:Map)
		ans-=cal(it.second.size());
	cout<<ans;
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值