ZOJ 3598 Spherical Triangle

当时居然没想到转成直角坐标系计算,一搜居然发现有余弦公式:cosA = (cosa-cosb*cosc)/(sinb*sinc),果断用之。a, b, c是单位球下角A, B, C所对的弧长。


#include <math.h>
#include <stdio.h>
#define torad(x) x=x/180*3.14159265358979323846
#define todeg(x) x=x*180/3.14159265358979323846

double x[3], y[3], z[3];
double a, b, c;
double A, B, C;

double cal(int i, int j)
{
	return 2*asin(sqrt(pow(x[i]-x[j], 2)+
	pow(y[i]-y[j], 2)+pow(z[i]-z[j], 2))/2);
}

int main()
{
	int T;
	double longi, lati;
	scanf("%d", &T);
	while(T --)
	{
		for(int i=0; i<3; ++i)
		{
			scanf("%lf%lf", &longi, &lati);
			torad(longi), torad(lati);
			x[i] = cos(lati)*cos(longi);
			y[i] = cos(lati)*sin(longi);
			z[i] = sin(lati);
		}
		a = cal(0, 1);
		b = cal(2, 1);
		c = cal(0, 2);
		A = acos((cos(a)-cos(b)*cos(c))/(sin(b)*sin(c)));
		B = acos((cos(b)-cos(a)*cos(c))/(sin(a)*sin(c)));
		C = acos((cos(c)-cos(b)*cos(a))/(sin(b)*sin(a)));
		A = A + B + C;
		printf("%.2lf\n", todeg(A));
	}
	return 0;
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值