QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#61931#4497. MapqinjianbinWA 965ms3936kbC++2.0kb2022-11-16 00:10:292022-11-16 00:10:30

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-11-16 00:10:30]
  • 评测
  • 测评结果:WA
  • 用时:965ms
  • 内存:3936kb
  • [2022-11-16 00:10:29]
  • 提交

answer

#include<iostream>
#include<cmath>
using namespace std;

const double EPS = 1e-8;
const double PI = acos(-1);
int sgn(const double x) {return x < -EPS ? -1 : x > EPS;}

int T;
struct Point {
    double x, y;
    Point (double x = 0, double y = 0) : x(x), y(y) {}
    Point operator-(const Point a) { return Point(x - a.x, y - a.y); }
    Point operator+(const Point a) { return Point(x + a.x, y + a.y); }
    Point operator * (const double r) {return Point (x * r, y * r);}
    double len() {return sqrt(x * x + y * y);}
    Point rotate(Point p, double ang) {
        Point v = (*this) - p;
        double c = cos(ang), s = sin(ang);
        return Point (p.x + v.x * c - v.y * s, p.y + v.x * s + v.y * c);
    }
}p[10];
double Cross(Point a, Point b) {return a.x * b.y - a.y * b.x;}
double Cross(Point a, Point b, Point c) {return Cross(b - a, c - a);}
double Dot(Point a, Point b) {return a.x * b.x + a.y * b.y;}
double Dot(Point a, Point b, Point c) { return Dot(b - a, c - a); }

int main() {
    scanf("%d", &T);
    while (T--) {
        for (int i = 1; i <= 8; i++)  
            scanf("%lf%lf", &p[i].x, &p[i].y);
        double ang1 = acos(Dot(p[1], p[2], p[5]) / (p[5] - p[1]).len() / (p[2] - p[1]).len());
        double rat1 = (p[5] - p[1]).len() / (p[2] - p[1]).len();
        int dir1 = sgn(Cross(p[1], p[2], p[5]));
        double ang2 = acos(Dot(p[2], p[1], p[6]) / (p[6] - p[2]).len() / (p[1] - p[2]).len());
        double rat2 = (p[6] - p[2]).len() / (p[1] - p[2]).len();
        int dir2 = sgn(Cross(p[2], p[1], p[6]));

        int Time = 1000;
        Point p1 = p[5], p2 = p[6];
        while (Time--) {
            Point tp1 = (p2 - p1) * rat1;
            tp1 = tp1.rotate(Point(0, 0), dir1 >= 0 ? ang1 : 2 * PI - ang1) + p1;
            Point tp2 = (p1 - p2) * rat2;
            tp2 = tp2.rotate(Point(0, 0), dir2 >= 0 ? ang2 : 2 * PI - ang2) + p2;
            p1 = tp1;
            p2 = tp2;
        }
        printf("%lf %lf", p1.x, p1.y);
    }

    return 0;
}

详细

Test #1:

score: 0
Wrong Answer
time: 965ms
memory: 3936kb

input:

100000
0 5
15 5
15 0
0 0
3 2
9 5
10 3
4 0
-605 604
604 605
605 -604
-604 -605
569 -338
568 -337
569 -336
570 -337
-964 963
963 964
964 -963
-963 -964
-364 838
-365 839
-364 840
-363 839
-664 663
663 664
664 -663
-663 -664
-307 -424
-308 -423
-307 -422
-306 -423
-866 865
865 866
866 -865
-865 -866
12...

output:

6.000000 2.000000568.808264 -336.251240-364.246369 838.376037-306.450301 -422.912651119.470554 796.609122426.696565 50.239822-138.701657 -400.855249190.891912 -43.827206-392.426023 -700.83840596.510176 624.641791576.278169 448.090845-93.058682 165.79180195.148725 -304.716714-170.199256 544.620085200...

result:

wrong output format Expected double, but "2.000000568.808264" found