QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#137942 | #6725. Pick Up | Yarema# | WA | 185ms | 6596kb | C++17 | 1.8kb | 2023-08-10 19:24:28 | 2023-08-10 19:24:29 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define SZ(a) (int)a.size()
#define ALL(a) a.begin(), a.end()
#define FOR(i, a, b) for (int i = (a); i<(b); ++i)
#define RFOR(i, b, a) for (int i = (b)-1; i>=(a); --i)
#define MP make_pair
#define PB push_back
#define F first
#define S second
#define FILL(a, b) memset(a, b, sizeof(a))
typedef long long LL;
typedef pair<int, int> PII;
typedef vector<int> VI;
struct point
{
int x, y;
point() {}
point(int a, int b): x(a), y(b) {}
LL dis(point p)
{
return LL(abs(x - p.x)) + abs(y - p.y);
}
};
point A, B, C;
int dx, dy;
int p = 0;
const int N = 1 << 18;
LL ans[N];
int a[N], b[N];
LL f(point X)
{
LL d1 = A.dis(X) * b[p];
LL d2 = B.dis(X) * a[p];
LL d3 = C.dis(X) * a[p];
return max(d1, d2) + d3;
}
LL g(int st)
{
int cx = (C.x - A.x);
if (dx) cx /= dx;
int cy = (C.y - A.y);
if (dy) cy /= dy;
point pt(A.x, A.y);
pt.x += cx * min(st, dx);
pt.y += cy * min(max(0, st - dx), dy);
LL a1 = f(pt);
pt = point(A.x, A.y);
pt.x += cx * min(st, dy);
pt.y += cy * min(max(0, st - dy), dx);
LL res = min(a1, f(pt));
ans[p] = min(res, ans[p]);
return res;
}
void solve()
{
scanf("%d%d", a + p, b + p);
scanf("%d%d", &A.x, &A.y);
scanf("%d%d", &B.x, &B.y);
scanf("%d%d", &C.x, &C.y);
ans[p] = A.dis(C) * b[p];
dx = abs(A.x - C.x);
dy = abs(A.y - C.y);
LL lx = 0, rx = dx + dy;
while (lx + 4 < rx)
{
LL d = (rx - lx) / 2;
LL m1 = lx + d;
LL m2 = lx + d + 1;
if (g(m1) < g(m2))
rx = m2;
else
lx = m1;
}
FOR (i, lx, rx + 1)
g(i);
p++;
}
int main()
{
//ios::sync_with_stdio(false);
//cin.tie(0);
int t;
scanf("%d", &t);
FOR (tt, 0, t)
{
solve();
}
FOR (i, 0, t) printf("%lf\n", double(ans[i]) / (a[i] * b[i]));
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 5712kb
input:
3 1 2 0 2 1 0 2 2 1 3 1 1 0 1 3 1 1 2 0 0 100 100 1 1
output:
1.500000 1.000000 2.000000
result:
ok 3 numbers
Test #2:
score: -100
Wrong Answer
time: 185ms
memory: 6596kb
input:
100000 158260522 877914575 602436426 24979445 861648772 623690081 433933447 476190629 731963982 822804784 450968417 430302156 982631932 161735902 880895728 923078537 317063340 492686568 773361868 125660016 650287940 839296263 462224593 492601449 576823355 782177068 404011431 818008580 954291757 1604...
output:
-230034591.446696 357225688.693232 501578951.564825 179827368.403294 116356303.767098 341157494.366853 -1050979906.589531 -627918246.871372 -588589189.822544 668430178.066735 482293386.729548 -1240483100.711399 243210140.395646 -284986555.203681 195435029.774080 23532061.423076 -3980017391.055724 -9...
result:
wrong answer 1st numbers differ - expected: '1.3846072', found: '-230034591.4466960', error = '166137071.0492393'