QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#139003 | #5505. Great Chase | Flamire | WA | 301ms | 9924kb | C++14 | 1.1kb | 2023-08-12 16:07:39 | 2023-08-12 16:07:42 |
Judging History
answer
#include <bits/stdc++.h>
#define N 400011
#define ll long long
#define lll __int128
#define dubble long double
#define pii pair<ll,ll>
#define s1 first
#define s2 second
using namespace std;
int t,n,v,n1,n2,nb;
pii a[N],a1[N],a2[N],b[N];
dubble slope(pii a,pii b){return (dubble)(b.s2-a.s2)/(b.s1-a.s1);}
int main()
{
scanf("%d",&t);while(t--)
{
scanf("%d%d",&n,&v);
for(int i=1;i<=n;++i)
{
scanf("%lld%lld",&a[i].s2,&a[i].s1);
if(a[i].s2<0)a[i].s1=-a[i].s1;
}
n1=n2=0;
for(int i=1;i<=n;++i)
{
if(a[i].s1<0)a1[++n1]=a[i];
else a2[++n2]=a[i];
}
sort(a1+1,a1+1+n1);sort(a2+1,a2+1+n2);
nb=0;
for(int i=1;i<=n2;++i)
{
while(nb>2&&(lll)(a2[i].s2-b[nb].s2)*(b[nb].s1-b[nb-1].s1)<=(lll)(b[nb].s2-b[nb-1].s2)*(a2[i].s1-b[nb].s1))--nb;
b[++nb]=a2[i];
}
dubble ans=1e30;
for(int i=1;i<=n1;++i)
{
int L=1,R=nb;
while(L<=R)
{
int M=L+R>>1;
ans=min(ans,slope(a1[i],b[M]));
if(M==R||slope(a1[i],b[M])<slope(a1[i],b[M+1]))R=M-1;else L=M+1;
}
}
printf("%.20Lf\n",ans*v);
}return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 9852kb
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.25000000000000000000 1.23076923076923076925 3000000000000.00000000000000000000
result:
ok 3 numbers
Test #2:
score: -100
Wrong Answer
time: 301ms
memory: 9924kb
input:
10000 200 997007 405524182320 754760 686939601648 419804 687047488212 715566 1446157132 4594 -670522037 4673 763634629282 253755 424307411732 275041 1582708381 8473 -667425982 4622 -522841486 1427 702430907988 460271 1405423646 1060 1497754648 6227 883363410675 723547 56899800372 46435 -810216390 64...
output:
145405766328.34911003708839416504 16414958969.72728119045495986938 5202715639.83518389984965324402 321977234.15632586897118017077 45384199210.22168397158384323120 183885744.76923076923412736505 1708925225.23047235794365406036 89786664971.55794263631105422974 13924365606.28738879505544900894 85711053...
result:
wrong answer 10th numbers differ - expected: '412975327.5555556', found: '857110539.0000000', error = '1.0754522'