摘要:
给定N颗星星和M个望眼镜,问望眼镜能看见的星星的颗数(其实就是就给定的星星与望眼镜的夹角是否小于给出的望眼镜的夹角)/*poj 3219 result:actime:47MS*/#include"stdio.h"#include"string.h"#include"math.h"struct point{ double x,y,z;}p[510];int use[510];double ACOS(point a,point b)//计算两点夹角{ double s1,s2,s3,d; s1=a.x*a.x+a.y*a.y+a.z*a. 阅读全文