日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

SDUTRescue The Princess(数学问题)

發布時間:2024/9/20 编程问答 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 SDUTRescue The Princess(数学问题) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目描述

? ??Several days ago, a beast caught a beautiful princess and the princess was put in prison. To rescue the princess, a prince who wanted to marry the princess set out immediately. Yet, the beast set a maze. Only if the prince find out the maze’s exit can he save the princess.

? ? Now, here comes the problem. The maze is a dimensional plane. The beast is smart, and he hidden the princess snugly. He marked two coordinates of an?equilateral?triangle?in the maze. The two marked coordinates are A(x1,y1) and B(x2,y2). The third coordinate C(x3,y3) is the maze’s exit. If the prince can find out the exit, he can save the princess. After the prince comes into the maze, he finds out the A(x1,y1) and B(x2,y2), but he doesn’t know where the C(x3,y3) is. The prince need your help. Can you?calculate?the C(x3,y3) and tell him?

輸入

? ? The first line is an integer T(1 <= T <= 100) which is the number of test cases. T test cases follow. Each test case contains two coordinates A(x1,y1) and B(x2,y2), described by four floating-point numbers x1, y1, x2, y2?( |x1|, |y1|, |x2|, |y2|?<= 1000.0).
? ? Please notice that A(x1,y1) and B(x2,y2) and C(x3,y3) are in an anticlockwise direction from the?equilateral?triangle. And coordinates A(x1,y1) and B(x2,y2) are given by anticlockwise.

輸出

? ? For each test case, you should output the coordinate of C(x3,y3), the result should be rounded to 2 decimal places in a line.

示例輸入

4 -100.00 0.00 0.00 0.00 0.00 0.00 0.00 100.00 0.00 0.00 100.00 100.00 1.00 0.00 1.866 0.50

示例輸出

(-50.00,86.60) (-86.60,50.00) (-36.60,136.60) (1.00,1.00)

提示

來源

2013年山東省第四屆ACM大學生程序設計競賽
分兩種:一種是A點B點的x坐標相同,二種:X坐標不相同。 #include<stdio.h> #include<math.h> int main() {double b[2],c[3],a,x[3],y[3],tx[2],ty[2],k,bb,edglen;int t;scanf("%d",&t);while(t--){scanf("%lf%lf%lf%lf",&x[0],&y[0],&x[1],&y[1]);if(x[0]==x[1]){edglen=sqrt(pow(x[0]-x[1],2.0)+pow(y[0]-y[1],2.0));tx[0]=x[0]+sqrt(3.0)/2*edglen;tx[1]=x[0]-sqrt(3.0)/2*edglen;if(y[1]>y[0]){ty[0]=y[0]+edglen/2;printf("(%.2lf,%.2lf)\n",tx[1],ty[0]);}else{ty[0]=y[1]+edglen/2;printf("(%.2lf,%.2lf)\n",tx[0],ty[0]);}continue;}c[0]=(x[0]*x[0]-x[1]*x[1]+y[0]*y[0]-y[1]*y[1])/(2*x[0]-2*x[1]);b[0]=-(y[0]-y[1])/(x[0]-x[1]);a=b[0]*b[0]+1; b[1]=2*(c[0]*b[0]-x[1]*b[0]-y[1]);c[1]=x[0]*x[0]-2*x[0]*x[1]+y[0]*y[0]-2*y[0]*y[1];c[2]=c[0]*c[0]-2*c[0]*x[1]-c[1];k=-b[0]; bb=y[0]-k*x[0];ty[0]=(-b[1]+sqrt(b[1]*b[1]-4*a*c[2]))/(2*a);tx[0]=c[0]+b[0]*ty[0];ty[1]=(-b[1]-sqrt(b[1]*b[1]-4*a*c[2]))/(2*a);tx[1]=c[0]+b[0]*ty[1];if(x[0]<x[1]){if(ty[0]-k*tx[0]-bb>0){x[2]=tx[0];y[2]=ty[0];}else{x[2]=tx[1];y[2]=ty[1];}}else if(x[0]>x[1]){if(ty[0]-k*tx[0]-bb<0){x[2]=tx[0];y[2]=ty[0];}else{x[2]=tx[1];y[2]=ty[1];}}printf("(%.2lf,%.2lf)\n",x[2],y[2]);}}

?

總結

以上是生活随笔為你收集整理的SDUTRescue The Princess(数学问题)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。