QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#718564#9576. Ordainer of Inexorable Judgmentanswerend42WA 0ms4300kbC++174.6kb2024-11-06 20:52:182024-11-06 20:52:22

Judging History

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

  • [2024-12-23 14:23:26]
  • hack成功,自动添加数据
  • (/hack/1303)
  • [2024-12-06 11:32:56]
  • hack成功,自动添加数据
  • (/hack/1271)
  • [2024-11-14 21:58:28]
  • hack成功,自动添加数据
  • (/hack/1181)
  • [2024-11-06 20:52:22]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:4300kb
  • [2024-11-06 20:52:18]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
using f64 = double;
struct Point {
    f64 x, y;
    Point(f64 x = 0., f64 y = 0.) : x(x), y(y) {}
    Point& operator+=(Point p) & { x += p.x, y += p.y; return *this; }
    Point& operator-=(Point p) & { x -= p.x, y -= p.y; return *this; }
    Point& operator*=(f64 v) & { x *= v, y *= v; return *this; }
    Point operator-() const { return Point(-x, -y); }
    friend Point operator+(Point a, Point b) { return a += b;}
    friend Point operator-(Point a, Point b) { return a -= b;}
    friend Point operator*(Point a, f64 b) { return a *= b;}
    friend Point operator*(f64 a, Point b) { return b *= a;}
    friend istream& operator>>(istream &is, Point &p) { return is >> p.x >> p.y;}
};
const f64 eps = 1e-8;
bool eq(f64 a, f64 b) { return abs(a - b) < eps; }
bool gt(f64 a, f64 b) { return a - b > eps; }
bool lt(f64 a, f64 b) { return a - b < -eps; }
bool ge(f64 a, f64 b) { return a - b > -eps; }
bool le(f64 a, f64 b) { return a - b < eps; }
using Vec = Point;

f64 cross(Vec a, Vec b) { return a.x * b.y - a.y * b.x; }
f64 dot(Vec a, Vec b) { return a.x * b.x + a.y * b.y; }

struct Line {
    Point a, b;
    Line() {}
    Line(Point a, Point b) : a(a), b(b) {}
};

struct Circle {
    Point p;
    f64 r;
    Circle() {}
    Circle(Point p, f64 r) : p(p), r(r) {}
};

f64 dis(Point a, Point b) { return hypot(a.x - b.x, a.y - b.y); }

// 向量顺时针旋转90度
Vec r90c(Vec v) { return { v.y, -v.x }; }

// 向量长度
// square
f64 len(Vec p) { return sqrt(dot(p, p)); }

// 向量夹角
// dot, len
f64 cos_t(Vec a, Vec b) { return dot(a, b) / len(a) / len(b); }

// 点作圆切线交点
// dis,r90c
vector<Point> tangent(Point p, Circle c) {
    auto t = dis(p, c.p);
    if (eq(dis(p, c.p), c.r)) {
        return { p, p };
    }
    auto a = c.r * c.r / t, b = sqrt(c.r * c.r - a * a);
    auto e1 = (1 / t) * (p - c.p);
    auto e2 = r90c(e1);
    auto p1 = c.p + a * e1 + b * e2, p2 = c.p + a * e1 - b * e2;
    if (gt(p1.x, p2.x))
        swap(p1, p2);
    else if (eq(p1.x, p2.x) && gt(p1.y, p2.y))
        swap(p1, p2);
    return { p1, p2 };
}

int isleft(Point p, Line l) {
    if(eq(cross(l.b - l.a, p - l.a), 0.)) return 0;
    if(gt(cross(l.b - l.a, p - l.a), 0.)) return 1;
    return -1;
}

const f64 pi = 3.14159265358979;


f64 rotangle(Vec a, Vec b) {
    return atan2(cross(a, b), dot(a, b));
}

void solve() {
    int n;
    f64 d, t;
    f64 x0, y0;
    cin >> n >> x0 >> y0 >> d >> t;
    Point dir(x0, y0);
    vector<Point> P(n);
    Circle C({0., 0.}, d);
    for(int i = 0; i < n; i++) cin >> P[i];
    vector<pair<int, Vec>> v;
    for(int i = 0; i < n; i++) {
        auto p = P[i];
        auto tangents = tangent(p, C);
        for(auto t : tangents) {
            Line l(t, p);
            int cur = isleft({0., 0.}, l);
            auto check = [&](int cur) -> int {
                for(int k = 0; k < n; k++) {
                    if(isleft(P[k], l) == 0) continue;
                    if(isleft(P[k], l) == cur) return 0;
                }
                return cur;
            };
            if(check(cur) != 0) {
                v.emplace_back(check(cur), p - t);
            }
        }
    }
    vector<pair<int, f64>> angles;
    for(int i = 0; i < v.size(); i++) {
        f64 angle = rotangle(dir, v[i].second);
        if(lt(angle, 0.)) angle += 2 * pi;
        angles.emplace_back(v[i].first, angle);
    }
    sort(angles.begin(), angles.end());

    f64 theta_in = angles[0].second, theta_out = angles.back().second;
    f64 ans;
    if(lt(theta_in, theta_out)) {
        f64 single_cycle = theta_out - theta_in;
        int cycles = floor(t / 2. / pi);
        ans = cycles * single_cycle;
        f64 left = t - cycles * 2. * pi;
        if(ge(left, theta_in) && le(left, theta_out)) ans += left - theta_in;
        else if(ge(left, theta_out)) ans += single_cycle;
    } else {
        f64 single_cycle = 2. * pi - (theta_in - theta_out);
        int cycles = floor(t / 2. / pi);
        ans = cycles * single_cycle;
        f64 left = t - cycles * 2. * pi;
        if(le(left, theta_out)) ans += left;
        else if(gt(left, theta_out) && lt(left, theta_in)) ans += theta_out;
        else if(ge(left, theta_in)) ans += theta_in + left - theta_out;
    }
    cout << fixed << setprecision(12);
    cout << ans << '\n';
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0), cout.tie(0);
    int t = 1;
    // cin >> t;
    while(t--) {
        solve();
    }
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 4196kb

input:

3 1 0 1 1
1 2
2 1
2 2

output:

1.000000000000

result:

ok found '1.0000000', expected '1.0000000', error '0.0000000'

Test #2:

score: 0
Accepted
time: 0ms
memory: 4140kb

input:

3 1 0 1 2
1 2
2 1
2 2

output:

1.570796326795

result:

ok found '1.5707963', expected '1.5707963', error '0.0000000'

Test #3:

score: 0
Accepted
time: 0ms
memory: 4252kb

input:

3 1 0 1 10000
1 2
2 1
2 2

output:

2500.707752257475

result:

ok found '2500.7077523', expected '2500.7077523', error '0.0000000'

Test #4:

score: 0
Accepted
time: 0ms
memory: 4136kb

input:

3 10000 10000 1 10000
10000 9999
10000 10000
9999 10000

output:

0.384241300292

result:

ok found '0.3842413', expected '0.3842413', error '0.0000000'

Test #5:

score: 0
Accepted
time: 0ms
memory: 4300kb

input:

3 -10000 -10000 10000 10000
-10000 -9999
-10000 -10000
-9999 -10000

output:

2500.240670009607

result:

ok found '2500.2406700', expected '2500.2406700', error '0.0000000'

Test #6:

score: 0
Accepted
time: 0ms
memory: 4160kb

input:

4 1 0 1 10000
-2 3400
-4 10000
-4 -10000
-2 -3400

output:

4999.219115408741

result:

ok found '4999.2191154', expected '4999.2191154', error '0.0000000'

Test #7:

score: 0
Accepted
time: 0ms
memory: 4200kb

input:

4 1 0 1 10000
-2 3300
-4 10000
-4 -10000
-2 -3300

output:

4999.200391854814

result:

ok found '4999.2003919', expected '4999.2003919', error '0.0000000'

Test #8:

score: 0
Accepted
time: 0ms
memory: 4228kb

input:

4 -3040 2716 2147 2
-9033 -8520
-8999 -8533
-8988 -8511
-9004 -8495

output:

0.350830058342

result:

ok found '0.3508301', expected '0.3508301', error '0.0000000'

Test #9:

score: 0
Accepted
time: 0ms
memory: 4204kb

input:

3 8168 -766 1549 1256
-3951 -6425
-3874 -6439
-3911 -6389

output:

84.832861161007

result:

ok found '84.8328612', expected '84.8328612', error '0.0000000'

Test #10:

score: 0
Accepted
time: 0ms
memory: 4220kb

input:

8 2977 -3175 8766 2
-4868 7759
-4867 7925
-4867 7950
-4886 7952
-4979 7953
-5048 7877
-5003 7761
-4936 7759

output:

0.327860646906

result:

ok found '0.3278606', expected '0.3278606', error '0.0000000'

Test #11:

score: 0
Accepted
time: 0ms
memory: 4292kb

input:

13 -1715 -4640 267 8651
272 6659
264 6660
208 6664
108 6625
107 6621
93 6564
90 6551
90 6485
124 6474
219 6477
283 6525
288 6591
286 6657

output:

153.589622784682

result:

ok found '153.5896228', expected '153.5896228', error '0.0000000'

Test #12:

score: 0
Accepted
time: 0ms
memory: 4212kb

input:

8 -9743 -7629 775 7
-194 981
-191 1720
-193 1845
-705 1929
-959 1950
-1131 1894
-1151 1604
-1031 1020

output:

2.046006204356

result:

ok found '2.0460062', expected '2.0460062', error '0.0000000'

Test #13:

score: 0
Accepted
time: 0ms
memory: 4184kb

input:

9 -6770 -1426 3491 1918
-2118 2886
-2063 3245
-2122 3709
-2129 3737
-2850 3718
-2984 3650
-3042 3462
-3028 2972
-2688 2888

output:

822.241184963715

result:

ok found '822.2411850', expected '822.2411850', error '0.0000000'

Test #14:

score: 0
Accepted
time: 0ms
memory: 4208kb

input:

12 1616 -7384 5256 10
-5607 2623
-5838 2843
-6117 2986
-6592 3169
-7129 3120
-7334 3069
-7406 2295
-7369 1712
-7091 1287
-6312 1252
-5596 1592
-5457 2088

output:

3.038765377139

result:

ok found '3.0387654', expected '3.0387654', error '0.0000000'

Test #15:

score: 0
Accepted
time: 0ms
memory: 4204kb

input:

10 -4546 5056 639 2996
4851 -3506
6078 -3725
6629 -3674
6775 -3296
6743 -2137
6585 -1866
5334 -1837
4950 -2020
4873 -2260
4852 -3240

output:

262.423969078937

result:

ok found '262.4239691', expected '262.4239691', error '0.0000000'

Test #16:

score: 0
Accepted
time: 0ms
memory: 4224kb

input:

20 4847 -6818 2502 2
-2164 -3844
-2453 -3826
-4654 -3818
-5073 -3829
-5212 -3833
-5828 -3921
-5889 -6065
-5896 -6716
-5877 -7349
-5855 -7457
-5619 -7711
-5485 -7786
-3743 -7809
-2345 -7747
-2075 -7682
-1960 -7364
-1900 -7015
-1901 -6391
-1922 -4091
-1968 -4028

output:

0.000000000000

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #17:

score: 0
Accepted
time: 0ms
memory: 4296kb

input:

14 -1792 -5751 2349 4072
-3697 -4432
-4268 -4431
-6475 -4433
-7140 -4464
-7320 -4526
-7354 -5333
-7357 -5731
-7366 -7076
-7346 -7868
-7218 -8415
-4044 -8407
-3412 -8398
-3388 -7296
-3391 -4497

output:

758.966768347891

result:

ok found '758.9667683', expected '758.9667683', error '0.0000000'

Test #18:

score: 0
Accepted
time: 0ms
memory: 4196kb

input:

23 8820 -5943 927 1
-1319 -4435
-1321 -297
-1361 -149
-1379 -119
-1619 13
-6579 12
-7090 11
-7184 -5
-7209 -18
-7277 -62
-7316 -672
-7316 -5095
-7295 -5877
-7273 -5921
-7250 -5955
-6569 -5967
-5927 -5975
-4278 -5977
-2646 -5978
-1477 -5965
-1472 -5962
-1404 -5892
-1334 -5809

output:

0.000000000000

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #19:

score: 0
Accepted
time: 0ms
memory: 4216kb

input:

22 -5664 7523 2588 8083
3456 2960
3446 2865
3433 2724
3432 615
3434 -1360
3446 -2929
3602 -2969
6204 -2972
8409 -2972
9227 -2969
9329 -2929
9375 -2890
9426 -2575
9432 2499
9432 2620
9390 2954
9386 2968
9277 3023
8340 3026
6809 3026
3634 3020
3600 3018

output:

3378.311740079398

result:

ok found '3378.3117401', expected '3378.3117401', error '0.0000000'

Test #20:

score: -100
Wrong Answer
time: 0ms
memory: 4156kb

input:

19 -1886 -3232 561 6
-8846 -7186
-8842 -7658
-8705 -7660
-1521 -7660
-1248 -7658
-1048 -7654
-906 -7650
-877 -7643
-858 -7619
-846 -7598
-846 -1489
-847 -277
-851 311
-1001 332
-1072 340
-7480 340
-8844 337
-8845 332
-8846 -9

output:

9.731766616540

result:

wrong answer 1st numbers differ - expected: '2.2682334', found: '9.7317666', error = '3.2904609'