当前位置: 首页 > news >正文

机票网站开发zencart 网站换域名

机票网站开发,zencart 网站换域名,ps教程自学网,教学资源网站建设设计L - Two Ants Gym - 102823L 题意#xff1a; 有两个线段A#xff0c;B#xff0c;两个线段不会超过一个公共点#xff0c; 你站在线段B上#xff0c;整个平面你看不到的区域的面积(如图中S所在区域) 题解#xff1a; 计算几何#xff0c;恶心题。调了一个小时还是…L - Two Ants Gym - 102823L 题意 有两个线段AB两个线段不会超过一个公共点 你站在线段B上整个平面你看不到的区域的面积(如图中S所在区域) 题解 计算几何恶心题。调了一个小时还是不对吐了 基本思路很明显S所在区域是一个三角形其中两点是线段w的两端那我们求出第三个点即可 基本思路是正确的但是本题要处理的细节很多 如图此时面积为inf 如图此时面积为inf 如图此时面积为0.00 如图此时情况为inf 此时面积为红色区域 情况非常多总结下 线段W退化成点答案为0 线段B退化成点答案为inf 两线段规范相交答案为0 两线段非规范相交 若有共线答案为0。 否则即交点在端点答案为inf 两线段不相交 B线段的两点在W线段的两侧答案为0. 否则 两个线段端点彼此之间的连线若有交点判断其相对位置如果相对于W线段不与黑色线段同侧则计算该点与W线段构成的面积即是答案。 若没有交点平行或者交点都在B线段同侧则答案为inf. 代码 AC代码代码网上的真的改不动了 #includebits/stdc.h using namespace std;// 计算几何模板 const double eps 1e-14; const double inf 1e20; const double pi acos(-1.0); const int maxp 1010; //Compares a double to zero int sgn(double x) {if (fabs(x) eps) { return 0; }else { return x 0 ? -1 : 1; } } //square of a double inline double sqr(double x) {return x * x;} struct Point {double x, y;Point() {}Point(double _x, double _y){x _x;y _y;}void input(){scanf(%lf%lf, x, y);}void output(){printf(%.2f %.2f\n, x, y);}bool operator (Point b)const{return sgn(x - b.x) 0 sgn(y - b.y) 0;}bool operator (Point b)const{return sgn(x - b.x) 0 ? sgn(y - b.y) 0 : x b.x;}Point operator -(const Point b)const{return Point(x - b.x, y - b.y);}//叉积double operator ^(const Point b)const{return x * b.y - y * b.x;}//点积double operator *(const Point b)const{return x * b.x y * b.y;}//返回长度double len(){return hypot(x, y); //库函数}//返回长度的平方double len2(){return x * x y * y;}//返回两点的距离double distance(Point p){return hypot(x - p.x, y - p.y);}Point operator (const Point b)const{return Point(x b.x, y b.y);}Point operator *(const double k)const{return Point(x * k, y * k);}Point operator /(const double k)const{return Point(x / k, y / k);}//计算pa 和 pb 的夹角//就是求这个点看a,b 所成的夹角//测试 LightOJ1203double rad(Point a, Point b){Point p *this;return fabs(atan2( fabs((a - p) ^ (b - p)), (a - p) * (b - p) ));}//化为长度为r的向量Point trunc(double r){double l len();if (!sgn(l)) { return *this; }r / l;return Point(x * r, y * r);}//逆时针旋转90度Point rotleft(){return Point(-y, x);}//顺时针旋转90度Point rotright(){return Point(y, -x);}//绕着p点逆时针旋转anglePoint rotate(Point p, double angle){Point v (*this) - p;double c cos(angle), s sin(angle);return Point(p.x v.x * c - v.y * s, p.y v.x * s v.y * c);} }; struct Line {Point s, e;Line() {}Line(Point _s, Point _e){s _s;e _e;}bool operator (Line v){return (s v.s) (e v.e);}//根据一个点和倾斜角angle确定直线,0anglepiLine(Point p, double angle){s p;if (sgn(angle - pi / 2) 0) {e (s Point(0, 1));} else {e (s Point(1, tan(angle)));}}//axbyc0Line(double a, double b, double c){if (sgn(a) 0) {s Point(0, -c / b);e Point(1, -c / b);} else if (sgn(b) 0) {s Point(-c / a, 0);e Point(-c / a, 1);} else {s Point(0, -c / b);e Point(1, (-c - a) / b);}}void input(){s.input();e.input();}void adjust(){if (e s) { swap(s, e); }}//求线段长度double length(){return s.distance(e);}//返回直线倾斜角 0anglepidouble angle(){double k atan2(e.y - s.y, e.x - s.x);if (sgn(k) 0) { k pi; }if (sgn(k - pi) 0) { k - pi; }return k;}//点和直线关系//1 在左侧//2 在右侧//3 在直线上int relation(Point p){int c sgn((p - s) ^ (e - s));if (c 0) { return 1; }else if (c 0) { return 2; }else { return 3; }}// 点在线段上的判断bool pointonseg(Point p){return sgn((p - s) ^ (e - s)) 0 sgn((p - s) * (p - e)) 0;}//两向量平行(对应直线平行或重合)bool parallel(Line v){return sgn((e - s) ^ (v.e-v.s)) 0;}//两线段相交判断//2 规范相交//1 非规范相交//0 不相交int segcrossseg(Line v){int d1 sgn((e - s) ^ (v.s - s));int d2 sgn((e - s) ^ (v.e-s));int d3 sgn((v.e-v.s) ^ (s - v.s));int d4 sgn((v.e-v.s) ^ (e - v.s));if ( (d1 ^ d2) -2 (d3 ^ d4) -2 ) { return 2; }return (d1 0 sgn((v.s - s) * (v.s - e)) 0) ||(d2 0 sgn((v.e-s) * (v.e-e)) 0) ||(d3 0 sgn((s - v.s) * (s - v.e)) 0) ||(d4 0 sgn((e - v.s) * (e - v.e)) 0);}//直线和线段相交判断//-*this line -v seg//2 规范相交//1 非规范相交//0 不相交int linecrossseg(Line v){int d1 sgn((e - s) ^ (v.s - s));int d2 sgn((e - s) ^ (v.e-s));if ((d1 ^ d2) -2) { return 2; }return (d1 0 || d2 0);}//两直线关系//0 平行//1 重合//2 相交int linecrossline(Line v){if ((*this).parallel(v)) {return v.relation(s) 3;}return 2;}//求两直线的交点//要保证两直线不平行或重合Point crosspoint(Line v){double a1 (v.e-v.s) ^ (s - v.s);double a2 (v.e-v.s) ^ (e - v.s);return Point((s.x * a2 - e.x * a1) / (a2 - a1), (s.y * a2 - e.y * a1) / (a2 - a1));}//点到直线的距离double dispointtoline(Point p){return fabs((p - s) ^ (e - s)) / length();}//点到线段的距离double dispointtoseg(Point p){if (sgn((p - s) * (e - s)) 0 || sgn((p - e) * (s - e)) 0) {return min(p.distance(s), p.distance(e));}return dispointtoline(p);}//返回线段到线段的距离//前提是两线段不相交相交距离就是0了double dissegtoseg(Line v){return min(min(dispointtoseg(v.s), dispointtoseg(v.e)), min(v.dispointtoseg(s), v.dispointtoseg(e)));}//返回点p在直线上的投影Point lineprog(Point p){Point v e - s;return s ( (v * (v * (p - s))) / (v.len2()) );}//返回点p关于直线的对称点Point symmetrypoint(Point p){Point q lineprog(p);return Point(2 * q.x - p.x, 2 * q.y - p.y);} };int main() {int T;cin T;Line w, b;int cas 0;Line l1, l2, l3, l4;Point cp;int sg;double ans;while (T--) {cas;w.input();b.input();if (w.s w.e) {printf(Case %d: 0.000\n, cas);} else if (b.s b.e) {printf(Case %d: inf\n, cas);} else {int crs w.segcrossseg(b);if (crs 2) {printf(Case %d: 0.000\n, cas);} else if (crs 1) {if (w.relation(b.s) 3 w.relation(b.e) 3) {printf(Case %d: 0.000\n, cas);} else if (w.pointonseg(b.s) || w.pointonseg(b.e)) {printf(Case %d: inf\n, cas);} else {printf(Case %d: 0.000\n, cas);}} else {if (sgn((w.e - w.s) ^ (b.e - w.s)) * sgn((w.e - w.s) ^ (b.s - w.s)) 0) {printf(Case %d: 0.000\n, cas);} else {sg sgn((w.e - w.s) ^ (b.e - w.s));bool flag false;l1 Line(w.e, b.e);l2 Line(w.s, b.s);l3 Line(w.e, b.s);l4 Line(w.s, b.e);if (!l1.parallel(l2)) {cp l1.crosspoint(l2);if (sgn((w.e - w.s) ^ (cp - w.s)) ! sg) {flag true;ans abs((w.e - w.s) ^ (cp - w.s)) / 2;}}if (!l3.parallel(l4)) {cp l3.crosspoint(l4);if (sgn((w.e - w.s) ^ (cp - w.s)) ! sg) {flag true;ans abs((w.e - w.s) ^ (cp - w.s)) / 2;}}if (!flag) {printf(Case %d: inf\n, cas);} else {printf(Case %d: %.10f\n, cas, ans);}}}}} }
http://www.zqtcl.cn/news/897663/

相关文章:

  • 商务网站建设网站开发一个软件开发的流程
  • 网站建设电脑和手机有区别吗公众号登录微信入口
  • 天津市建设监理协会网站三亚网络网站建设
  • 义乌进货网平台北京网优化seo优化公司
  • 在网站上放广告网站建设流程效果
  • 腾讯云学生机做网站济南网站改版
  • 开封市做网站的公司wordpress无法映射
  • 网站构建工具wordpress 主题授权
  • 大型网站开发 赚钱宁夏网站建设优化
  • 通过ip访问网站需要怎么做博客的网站页面设计
  • 高明做网站软件开发工程师是前端还是后端
  • 利用html5 监控网站性能如何能快速搜到新做网站链接
  • 做网站需要看那几点seo是什么职业岗位
  • 做游戏网站需要哪些许可100个免费推广网站下载
  • 网站管理系统是什么马鞍山网站建设制作公司
  • 设计学网站网络工程专业毕业生设计
  • 成都网站建设有名的国外优质设计网站
  • seo基础培训教程seo百度关键词优化软件
  • 西安响应式网站青岛网站制作哪里有
  • 政务服务网站建设合肥seo排名扣费
  • 郑州做网站的大公司无锡网站程序
  • 打开网站是空白页面营销型网站建设应该考虑哪些因素
  • 做网站开麻烦吗个人网站备案网站名称
  • 瑞诺国际做外贸网站好吗网站端和移动端分开建设域名一样么
  • 如何网站点击率网站程序开发技术
  • 深圳网站建设售后服务怎样.net网站开发简介
  • 光谷软件园 网站建设中国国家数据统计网
  • wordpress 主页位置seo是什么意思教程
  • 网站开发甘特图网站是别人做的域名自己怎么续费
  • 如何查询网站是否备案江苏省句容建设局网站