sdut 2603:Rescue The Princess(第四届山东省省赛原题,计算几何,向量旋转 + 向量交点)

Rescue The Princess

Time Limit: 1000ms   Memory limit:
65536K  有疑问?点这里^_^

题目描述

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大学生程序设计竞赛


  计算几何,向量旋转 +
向量交点

  这是一道水题,计算几何和解析几何的方法都可以做出来。

  题意:abc是一个等边三角形,已知a、b两点坐标,且为逆时针方向,让你求点c的坐标。

  思路:求出向量ab,然后分别逆时针旋转60°和120°求出ab为起点的两边的向量,最后求出这两条向量的交点。

  代码:


 1 #include <iostream>
2 #include <stdio.h>
3 #include <cmath>
4 using namespace std;
5 #define eps 1e-10
6 #define PI acos(-1)
7 struct Point{
8 double x,y;
9 Point(double x=0,double y=0):x(x),y(y){}
10 };
11 typedef Point Vector ;
12 Vector operator + (Vector a,Vector b)
13 {
14 return Vector(a.x+b.x,a.y+b.y);
15 }
16 Vector operator - (Point a,Point b)
17 {
18 return Vector(a.x-b.x,a.y-b.y);
19 }
20 Vector operator * (Vector a,double b)
21 {
22 return Vector(a.x*b,a.y*b);
23 }
24 Vector operator / (Vector a,double b)
25 {
26 return Vector(a.x/b,a.y/b);
27 }
28 double Cross(Vector a,Vector b)
29 {
30 return a.x*b.y-b.x*a.y;
31 }
32 Vector Rotate(Vector A,double rad)
33 {
34 return Vector(A.x*cos(rad)-A.y*sin(rad),A.x*sin(rad)+A.y*cos(rad));
35 }
36 Point GetLineIntersection(Point P,Vector v,Point Q,Vector w)
37 {
38 Vector u = P-Q;
39 double t = Cross(w,u) / Cross(v,w);
40 return P+v*t;
41 }
42 int main()
43 {
44 int T;
45 scanf("%d",&T);
46 while(T--){
47 Point a,b;
48 scanf("%lf%lf%lf%lf",&a.x,&a.y,&b.x,&b.y);
49 Point c = GetLineIntersection(a,Rotate(b-a,PI/3),b,Rotate(b-a,PI*2/3));
50 printf("(%.2lf,%.2lf)\n",c.x,c.y);
51 }
52 return 0;
53 }
54
55
56
57
58 /**************************************
59 Problem id : SDUT OJ 2603
60 User name : Miracle
61 Result : Accepted
62 Take Memory : 512K
63 Take Time : 0MS
64 Submit Time : 2014-05-04 09:16:11
65 **************************************/

Freecode : www.cnblogs.com/yym2013

sdut 2603:Rescue The Princess(第四届山东省省赛原题,计算几何,向量旋转 +
向量交点),布布扣,bubuko.com

sdut 2603:Rescue The Princess(第四届山东省省赛原题,计算几何,向量旋转 +
向量交点)

时间: 2024-08-07 19:17:19

sdut 2603:Rescue The Princess(第四届山东省省赛原题,计算几何,向量旋转 + 向量交点)的相关文章

sdut 2610:Boring Counting(第四届山东省省赛原题,划分树 + 二分)

Boring Counting Time Limit: 3000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 In this problem you are given a number sequence P consisting of N integer and Pi is the ith element in the sequence. Now you task is to answer a list of queries, for each quer

sdut 2411:Pixel density(第三届山东省省赛原题,字符串处理)

Pixel density Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 Pixels per inch (PPI) or pixel density is a measurement of the resolution of devices in various contexts; typically computer displays, image scanners, and digital camera image s

sdut 2603 Rescue The Princess(算是解析几何吧)(山东省第四届ACM省赛A题)

题目地址:sdut 2603 Rescue The Princess Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 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

sdut 2413:n a^o7 !(第三届山东省省赛原题,水题,字符串处理)

n a^o7 ! Time Limit: 1000MS Memory limit: 65536K 题目描述 All brave and intelligent fighters, next you will step into a distinctive battleground which is full of sweet and happiness. If you want to win the battle, you must do warm-up according to my inst

sdut 2416:Fruit Ninja II(第三届山东省省赛原题,数学题)

Fruit Ninja II Time Limit: 5000MS Memory limit: 65536K 题目描述 Have you ever played a popular game named "Fruit Ninja"?Fruit Ninja (known as Fruit Ninja HD on the iPad and Fruit Ninja THD for Nvidia Tegra 2 based Android devices) is a video game de

sdutoj Rescue The Princess

http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2603 Rescue The Princess Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 Several days ago, a beast caught a beautiful princess and the princess was put in prison. To re

[2013山东省第四届ACM大学生程序设计竞赛]——Rescue The Princess

Rescue The Princess Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 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 immedia

山东省第四届acm.Rescue The Princess(数学推导)

Rescue The Princess Time Limit: 1 Sec  Memory Limit: 128 MB Submit: 412  Solved: 168 [Submit][Status][Web Board] Description Several days ago, a beast caught a beautiful princess and the princess was put in prison. To rescue the princess, a prince wh

山东省第四届ACM程序设计竞赛A题:Rescue The Princess(数学+计算几何)

Rescue The Princess Time Limit: 1 Sec  Memory Limit: 128 MBSubmit: 412  Solved: 168[Submit][Status][Web Board] Description Several days ago, a beast caught a beautiful princess and the princess was put in prison. To rescue the princess, a prince who