QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#145713#5505. Great ChaseTJ_AndevikingWA 1ms3776kbC++201.6kb2023-08-22 14:32:242023-08-22 14:32:25

Judging History

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

  • [2023-08-22 14:32:25]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3776kb
  • [2023-08-22 14:32:24]
  • 提交

answer

#pragma GCC optimize(2)
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef __int128_t int128;
typedef pair<int, int> pii;
#define iofast ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
#define lowbit(x) (x&(-x))
#define inv(x) qpow(x,mod-2)
#define debug(x) cout << (#x) << " = " << x << endl
#define range(x) (x).begin(), (x).end()

const int iINF = 0x3f3f3f3f;
const ll llINF = 0x3f3f3f3f3f3f3f3f;
const ll mod = 998244353;

/*---------------------------------------*/

void solve()
{
    int n, v;
    cin >> n >> v;

    vector<pii>p[2];
    for (int i = 1;i <= n;i++) {
        int a, b;
        cin >> a >> b;
        if (a > 0)
            p[0].emplace_back(a, b);
        else
            p[1].emplace_back(a, b);
    }

    long double l = 0, r = 1e13;
    for (int cnt = 1;cnt <= 1000;++cnt) {
        long double mid = (l + r) / 2;
        long double pl = 1e28, pr = -1e28;
        for (const auto& [x, y] : p[0])
            if (pl - x + mid * y >= -1E-18L)
                pl = x - mid * y;
        for (const auto& [x, y] : p[1])
            if (x + mid * y - pr >= -1E-18L)
                pr = x + mid * y;

        if (pr - pl >= -1E-18L)
            r = mid;
        else
            l = mid;
    }

    // printf("%.15LF\n", v * l) << '\n';
    cout << fixed << setprecision(15) << v * l << '\n';

}

/*---------------------------------------*/

int main()
{
    iofast;
    int t = 1;
    cin >> t;
    // cout << "38.25\n1.23076923\n3000000000000";
    while (t--)
        solve();

    return 0;
}

详细

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3776kb

input:

3
4 9
10 2
-7 2
-6 1
7 1
2 8
-1 7
1 6
2 3
-1000000000000 1
1000000000000 1

output:

38.250000000000000
1.230769230769231
30000000000000.000000000000000

result:

wrong answer 3rd numbers differ - expected: '3000000000000.0000000', found: '30000000000000.0000000', error = '9.0000000'