QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#759929 | #9728. Catch the Star | ucup-team1004 | AC ✓ | 244ms | 5392kb | C++17 | 3.9kb | 2024-11-18 13:25:21 | 2024-11-18 13:25:23 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#ifdef DEBUG
#include"debug.h"
#else
#define debug(...) void()
#endif
#define all(x) (x).begin(),(x).end()
template<class T>
auto ary(T *a,int l,int r){
return vector<T>{a+l,a+1+r};
}
using ll=long long;
using ull=unsigned long long;
using vec=complex<int>;
using ld=long double;
ll dot(const vec &a,const vec &b){
return 1ll*real(a)*real(b)+1ll*imag(a)*imag(b);
}
ll cross(const vec &a,const vec &b){
return dot(a,b*vec(0,-1));
}
struct frac{
ll x,y;
frac()=default;
frac(ll a,ll b=1):x(a),y(b){}
ld calc()const{
return (ld)x/y;
}
};
#ifdef DEBUG
ostream& operator << (ostream &out,frac a){
return out<<a.calc();
}
#endif
using LL=__int128;
bool operator < (const frac &a,const frac &b){
return (LL)a.x*b.y<(LL)b.x*a.y;
}
template<class T>
int sign(const T &x){
return x?(x>0?1:-1):0;
}
int T,n,L,R;
using poly=vector<vec>;
poly a,b;
void read(poly &a){
int k;
scanf("%d",&k);
a.resize(k);
for(int i=0,x,y;i<k;i++){
scanf("%d%d",&x,&y);
a[i]=vec(x,y);
}
}
pair<int,int> find(vec s,const poly &a){
int n=a.size(),st=0;
if(!cross(a[0]-s,a[1]-s))st=1;
int op=sign(cross(a[st]-s,a[st+1]-s));
int l=0,r=n,mid;
for(;l+1<r;){
mid=(l+r)>>1;
if(sign(cross(a[st]-s,a[(st+mid)%n]-s))==op)l=mid;
else r=mid;
}
auto find=[&](int st,int len,int op){
int l=0,r=len,mid;
for(;l<r;){
mid=(l+r)>>1;
int u=(st+mid)%n,v=(u+1)%n;
if(sign(cross(a[u]-s,a[v]-s))==op)l=mid+1;
else r=mid;
}
return (st+l)%n;
};
int p=find(st,l,op),q=find((st+r)%n,(n-r)%n,-op);
return op>0?make_pair(p,q):make_pair(q,p);
}
frac calc(vec a,vec b){
ll s=cross(b-L,a-L),t=cross(a-R,b-R);
if(s<0)s=-s,t=-t;
return frac(s,s+t);
}
vector<pair<frac,int>>c;
bool solve(){
int n=b.size();
auto [s,t]=find(a[0],b);
int x=[&](){
int l=0,r=(t-s+n)%n,mid;
for(;l<r;){
mid=(l+r)>>1;
int u=(s+mid)%n,v=(u+1)%n;
if(cross(b[v]-b[u],a[find(b[u],a).first]-b[u])>0)l=mid+1;
else r=mid;
}
return (s+l)%n;
}();
int y=[&](){
int l=0,r=(t-s+n)%n,mid;
for(;l<r;){
mid=(l+r)>>1;
int u=(t-mid+n)%n,v=(u+n-1)%n;
if(cross(a[find(b[u],a).second]-b[u],b[v]-b[u])>0)l=mid+1;
else r=mid;
}
return (t-l+n)%n;
}();
int p=find(b[x],a).first;
int q=find(b[y],a).second;
auto chkin=[&](vec u,int o1,int o2){
return
cross(a[p]-b[x],u-b[x])>=o1&&
cross(b[y]-b[x],u-b[x])>=0&&
cross(u-b[y],a[q]-b[y])>=o2;
};
if(chkin(L,1,0)&&chkin(R,0,1))return 0;
if(chkin(R,1,0)&&chkin(L,0,1))return 0;
auto check=[&](vec s,vec t){
ll p=cross(R-L,t-L),q=cross(R-L,s-L);
if(sign(p)*sign(q)<=0||abs(p)>=abs(q))return false;
return sign(cross(t-s,L-s))*sign(cross(t-s,R-s))<0;
};
int o1=check(a[p],b[x]),o2=check(a[q],b[y]);
if(o1&&o2){
frac s=calc(a[p],b[x]),t=calc(a[q],b[y]);
if(t<s)swap(s,t);
c.push_back({s,1});
c.push_back({t,-1});
}else if(o1){
frac s=calc(a[p],b[x]);
if(cross(a[p]-b[x],L-b[x])>0){
c.push_back({frac(0),1});
c.push_back({s,-1});
}else{
c.push_back({s,1});
c.push_back({frac(1),-1});
}
}else if(o2){
frac s=calc(a[q],b[y]);
if(cross(L-b[y],a[q]-b[y])>0){
c.push_back({frac(0),1});
c.push_back({s,-1});
}else{
c.push_back({s,1});
c.push_back({frac(1),-1});
}
}
return 1;
}
void work(){
scanf("%d%d%d",&n,&L,&R);
read(a);
c.clear();
ld ans=0;
bool flag=0;
for(int i=1;i<=n;i++){
read(b);
if(!solve())flag=1;
}
if(flag)return puts("-1"),void();
c.push_back({frac(0),0});
c.push_back({frac(1),0});
sort(all(c));
for(int i=0,x=0;i+1<c.size();i++){
x+=c[i].second;
if(!x){
ans+=c[i+1].first.calc()-c[i].first.calc();
if(frac(0)<c[i].first&&c[i].first<frac(1))flag=1;
if(c[i].first<c[i+1].first)flag=1;
}
}
ans*=abs(R-L);
if(flag)printf("%.15Lf\n",ans);
else puts("-1");
}
int main(){
for(scanf("%d",&T);T--;)work();
return 0;
}
#ifdef DEBUG
#include"debug.hpp"
#endif
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3932kb
input:
2 4 -8 8 3 -7 7 -6 8 -7 8 3 -9 -2 -7 3 -9 -1 3 -2 3 0 2 -4 5 3 5 1 5 3 4 2 3 1 -1 2 -2 3 -1 5 -8 8 5 -14 -3 -10 -2 -9 2 -10 4 -12 5 3 -16 0 -15 0 -15 1 3 -15 6 -9 5 -15 7 3 -10 5 -9 5 -10 6 3 -7 3 -3 2 -8 4 3 -6 -1 -6 -2 -5 -1
output:
9.404761904761905 6.000000000000000
result:
ok 2 numbers
Test #2:
score: 0
Accepted
time: 0ms
memory: 3868kb
input:
3 1 -4 4 3 -2 6 0 5 2 6 3 -3 1 3 1 0 4 3 -2 2 3 -2 4 2 4 0 6 3 -2 2 -1 2 -2 3 3 1 2 2 2 2 3 3 -2 -1 0 -3 2 -1 1 1 2 3 -8 0 -7 0 -8 1 3 -5 0 -4 -1 -4 0
output:
-1 0.000000000000000 1.000000000000000
result:
ok 3 numbers
Test #3:
score: 0
Accepted
time: 0ms
memory: 3952kb
input:
1 1 -744567334 955216804 5 -781518205 -852078097 -781516900 -852078384 -781516392 -852076569 -781518329 -852076047 -781519925 -852077600 5 -393011614 -131855702 -393010699 -131856607 -393008846 -131856475 -393009388 -131854587 -393010201 -131854694
output:
1699779738.691979192313738
result:
ok found '1699779738.691979170', expected '1699779738.691979170', error '0.000000000'
Test #4:
score: 0
Accepted
time: 31ms
memory: 3736kb
input:
16666 2 -732787031 -732787030 3 -798263477 735869144 -583647039 529057159 -583647039 529057160 3 -777230180 499482549 -777230181 499482549 -777230180 499482548 3 -661853868 251627327 -661853868 251627326 -661853867 251627327 2 463140451 463140452 3 232604219 637008523 797038205 345997813 797038205 3...
output:
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...
result:
ok 16666 numbers
Test #5:
score: 0
Accepted
time: 32ms
memory: 3960kb
input:
16667 2 -9 7 3 -8 4 -6 1 -4 2 3 6 13 2 12 3 10 3 -1 7 0 10 -3 4 2 -9 5 3 -8 10 -5 8 -4 10 3 10 -8 9 -11 12 -8 3 -10 -5 -8 -4 -7 -1 2 -6 5 3 -8 6 -7 6 -5 7 3 -2 -3 1 -4 -4 -2 3 1 10 0 10 -1 8 2 -9 9 3 -5 -11 -2 -11 -5 -8 3 6 -5 5 -2 4 -5 3 11 6 9 3 11 3 2 -6 5 3 -7 6 -8 7 -9 4 3 9 2 12 -3 11 0 3 -6 3...
output:
16.000000000000000 14.000000000000000 11.000000000000000 15.555555555555556 -1 12.000000000000000 14.000000000000000 17.000000000000000 11.000000000000000 16.000000000000000 11.000000000000000 15.000000000000000 15.000000000000000 10.000000000000000 18.000000000000000 16.000000000000000 14.000000000...
result:
ok 16667 numbers
Test #6:
score: 0
Accepted
time: 32ms
memory: 3964kb
input:
16667 2 -6 10 3 6 -8 8 -10 9 -7 3 -5 13 -6 10 -6 8 3 8 10 7 7 10 7 2 -8 7 3 2 -10 0 -12 3 -11 3 -6 -7 -3 -5 -4 -4 3 10 -3 8 -3 8 -6 2 -7 6 3 9 1 9 4 6 1 3 7 -6 4 -8 6 -8 3 -3 -12 -4 -10 -5 -14 2 -10 10 3 11 -4 9 -1 9 -3 3 -6 -7 -6 -8 -5 -5 3 -10 -7 -7 -10 -6 -10 2 -9 8 3 3 2 3 1 6 5 3 4 -2 0 -3 1 -3...
output:
16.000000000000000 12.142857142857143 13.000000000000000 20.000000000000000 17.000000000000000 13.000000000000000 15.000000000000000 16.000000000000000 19.000000000000000 11.000000000000000 15.000000000000000 20.000000000000000 15.000000000000000 -1 14.000000000000000 19.000000000000000 17.000000000...
result:
ok 16667 numbers
Test #7:
score: 0
Accepted
time: 33ms
memory: 3952kb
input:
16667 2 -20 15 3 17 -17 22 -14 14 -16 3 -5 -12 -3 -8 -8 -12 3 11 8 15 10 8 8 2 -10 12 3 -14 -13 -19 -9 -11 -17 3 14 13 10 12 14 9 3 -5 -20 -7 -17 -7 -20 2 -11 10 3 0 -24 -1 -20 -5 -19 3 -12 -2 -15 -5 -12 -5 3 10 -21 14 -24 14 -19 2 -15 20 3 -3 -16 -4 -10 -6 -15 3 8 17 7 12 10 17 3 8 -7 10 -5 11 -3 2...
output:
35.000000000000000 22.000000000000000 21.000000000000000 29.230769230769231 31.000000000000000 37.000000000000000 17.250000000000000 38.000000000000000 37.000000000000000 31.000000000000000 30.000000000000000 33.000000000000000 27.000000000000000 30.000000000000000 30.000000000000000 31.000000000000...
result:
ok 16667 numbers
Test #8:
score: 0
Accepted
time: 30ms
memory: 3956kb
input:
16667 2 -19 19 3 18 -12 22 -15 20 -12 3 24 0 20 2 20 -3 3 15 25 18 20 19 22 2 -18 20 3 10 6 11 11 7 8 3 26 -21 20 -12 21 -17 3 -4 -13 -11 -19 -6 -18 2 -13 14 3 19 -4 20 0 17 -7 3 1 -8 6 -12 3 -7 3 12 -7 5 -2 10 -6 2 -18 12 3 14 -5 15 -6 17 -4 3 18 -20 15 -19 20 -22 3 14 -8 18 -3 12 -10 2 -14 15 3 17...
output:
38.000000000000000 38.000000000000000 13.800000000000000 30.000000000000000 29.000000000000000 25.000000000000000 27.000000000000000 27.000000000000000 29.000000000000000 28.000000000000000 27.000000000000000 34.000000000000000 35.000000000000000 20.000000000000000 20.000000000000000 25.000000000000...
result:
ok 16667 numbers
Test #9:
score: 0
Accepted
time: 40ms
memory: 3916kb
input:
8334 5 -17 14 5 -9 13 -12 15 -15 10 -15 9 -13 9 5 24 4 22 9 17 13 20 8 23 4 4 -11 4 -12 6 -17 9 -14 6 5 -7 23 -10 19 -10 17 -1 23 -3 28 4 23 -16 20 -11 15 -7 11 -11 5 15 -9 14 -9 15 -12 19 -14 20 -10 5 -11 10 5 -4 8 -1 10 -13 16 -14 15 -9 11 5 9 2 12 5 14 10 2 4 4 1 5 20 -12 23 -15 29 -10 27 -9 22 -...
output:
20.000000000000000 15.000000000000000 34.000000000000000 21.000000000000000 25.000000000000000 21.000000000000000 21.000000000000000 35.000000000000000 6.333333333333333 32.000000000000000 28.000000000000000 -1 25.000000000000000 30.000000000000000 38.000000000000000 35.000000000000000 8.91666666666...
result:
ok 8334 numbers
Test #10:
score: 0
Accepted
time: 36ms
memory: 3924kb
input:
8334 5 -10 19 5 28 13 20 10 24 8 28 8 29 13 5 -5 24 -5 20 -1 19 4 22 -1 24 5 -15 11 -10 8 -9 8 -12 13 -14 16 5 -4 16 -5 11 -1 16 -1 18 -2 21 3 12 21 13 13 17 18 4 -19 7 -15 10 -19 14 -20 12 5 -19 10 5 17 10 14 10 11 8 10 6 11 4 3 -5 -2 -10 -7 -5 -12 4 18 -4 20 -1 20 2 15 -3 4 -16 -4 -20 -5 -16 -9 -1...
output:
29.000000000000000 29.000000000000000 27.000000000000000 35.000000000000000 35.000000000000000 27.000000000000000 33.000000000000000 33.400000000000000 8.500000000000000 34.000000000000000 29.000000000000000 29.000000000000000 29.000000000000000 12.000000000000000 23.000000000000000 3.50000000000000...
result:
ok 8334 numbers
Test #11:
score: 0
Accepted
time: 40ms
memory: 3904kb
input:
8334 5 -24 23 5 -2 -9 -8 -9 -5 -13 0 -14 1 -10 3 -15 -8 -10 -4 -16 -7 5 0 -45 1 -45 5 -41 4 -40 -2 -43 3 8 32 9 27 12 30 5 33 1 36 -2 41 1 43 4 32 6 5 5 -35 7 -34 5 -30 1 -30 -2 -33 5 -38 33 5 44 29 39 34 35 35 36 34 41 30 5 29 25 32 20 36 18 37 22 31 27 4 29 15 33 12 38 12 33 17 5 -33 -29 -33 -30 -...
output:
34.600000000000000 -1 63.000000000000000 25.000000000000000 47.750000000000000 52.823529411764706 49.000000000000000 62.000000000000000 50.551724137931034 42.000000000000000 39.000000000000000 63.000000000000000 38.818181818181818 37.736842105263158 58.000000000000000 2.333333333333333 51.6363636363...
result:
ok 8334 numbers
Test #12:
score: 0
Accepted
time: 39ms
memory: 3924kb
input:
8334 5 -22 38 5 10 -32 12 -30 9 -25 6 -22 6 -27 4 -38 27 -38 24 -37 24 -35 29 4 42 14 42 17 41 18 39 11 3 4 13 -3 15 -1 10 5 -36 5 -27 13 -30 15 -34 13 -36 10 4 -17 -9 -16 -4 -21 -3 -19 -7 5 -28 20 5 41 -2 33 -9 35 -9 37 -8 38 -7 5 5 -15 4 -16 4 -19 5 -23 9 -23 3 -7 -39 -6 -40 -3 -37 3 34 3 37 4 30 ...
output:
57.714285714285714 48.000000000000000 55.000000000000000 59.000000000000000 52.666666666666667 54.312500000000000 65.000000000000000 40.040485829959514 5.142857142857143 32.941176470588235 61.000000000000000 41.000000000000000 58.826086956521739 57.000000000000000 9.187500000000000 66.00000000000000...
result:
ok 8334 numbers
Test #13:
score: 0
Accepted
time: 69ms
memory: 3908kb
input:
8334 5 -27 34 10 -34 40 -35 39 -39 31 -40 27 -35 25 -30 26 -28 30 -27 33 -27 37 -31 39 9 19 20 21 24 19 29 17 29 16 28 7 16 9 12 13 11 16 15 6 1 -20 7 -28 11 -29 12 -26 10 -22 6 -17 10 40 -48 42 -45 43 -40 39 -36 35 -35 30 -37 28 -40 28 -45 30 -48 35 -50 7 44 -3 49 0 51 2 50 7 48 10 43 5 39 0 8 20 -...
output:
53.280000000000000 59.000000000000000 71.000000000000000 59.000000000000000 11.000000000000000 47.000000000000000 4.600000000000000 41.733333333333333 71.000000000000000 17.730769230769231 46.352941176470588 70.000000000000000 43.939393939393939 -1 44.000000000000000 43.000000000000000 61.2857142857...
result:
ok 8334 numbers
Test #14:
score: 0
Accepted
time: 69ms
memory: 3960kb
input:
8334 5 -20 29 10 32 17 27 20 25 20 20 16 26 6 31 5 32 5 36 6 37 9 36 14 7 -28 29 -28 33 -32 32 -37 29 -40 27 -37 26 -32 25 7 39 23 36 26 33 28 31 29 28 27 30 22 32 18 8 1 13 5 13 6 17 4 22 0 26 -4 24 -5 19 -3 15 8 -26 28 -23 23 -19 25 -15 29 -13 34 -23 36 -27 36 -27 33 8 4 39 2 38 -2 33 -2 32 0 27 3...
output:
49.000000000000000 51.000000000000000 55.000000000000000 -1 59.000000000000000 23.266666666666667 40.538461538461538 34.135135135135135 28.400000000000000 73.000000000000000 54.052631578947368 59.000000000000000 18.166666666666667 66.000000000000000 -1 -1 48.000000000000000 50.000000000000000 13.090...
result:
ok 8334 numbers
Test #15:
score: 0
Accepted
time: 110ms
memory: 3916kb
input:
8334 5 -3126 3527 40 2524 -3205 2555 -3204 2565 -3202 2571 -3200 2573 -3199 2582 -3194 2590 -3189 2593 -3187 2597 -3182 2603 -3174 2608 -3164 2610 -3159 2612 -3149 2611 -3139 2608 -3134 2606 -3132 2598 -3125 2588 -3120 2583 -3118 2575 -3115 2565 -3112 2555 -3110 2553 -3110 2544 -3111 2538 -3112 2528...
output:
6508.695260477869173 6121.000000000000000 5228.146050879840213 7545.000000000000000 6439.301684904757896 5552.000000000000000 7258.000000000000000 4340.000000000000000 7161.000000000000000 6347.000000000000000 6490.569421429937990 7132.550454048035018 5888.756053076135560 5827.000000000000000 4107.0...
result:
ok 8334 numbers
Test #16:
score: 0
Accepted
time: 110ms
memory: 3916kb
input:
8334 5 -2274 2353 40 2604 1999 2602 1992 2601 1985 2601 1984 2603 1974 2606 1965 2610 1955 2613 1948 2623 1940 2633 1938 2636 1939 2644 1944 2651 1949 2660 1956 2713 2008 2718 2015 2721 2021 2720 2031 2719 2040 2718 2048 2717 2051 2713 2060 2708 2070 2698 2078 2692 2080 2685 2082 2676 2083 2672 2082...
output:
4298.549625660067996 5799.000000000000000 4987.365051309711504 7308.000000000000000 5589.703760348221036 4652.000000000000000 6082.141746146348858 6086.000000000000000 3355.766144503350746 6459.000000000000000 6291.000000000000000 4838.000000000000000 4464.180612025333168 6093.000000000000000 6359.0...
result:
ok 8334 numbers
Test #17:
score: 0
Accepted
time: 111ms
memory: 3960kb
input:
2274 5 -29040 32893 40 21293 3672 21285 3680 21278 3685 21271 3688 21266 3690 21258 3693 21255 3694 21254 3694 21245 3693 21239 3692 21223 3687 21218 3684 21214 3680 21208 3673 21203 3667 21198 3659 21195 3650 21193 3643 21191 3633 21194 3624 21198 3616 21203 3609 21211 3600 21220 3590 21221 3589 21...
output:
61933.000000000000000 35500.500000000000000 49406.000000000000000 67961.066730249607659 54610.000000000000000 63846.000000000000000 54004.000000000000000 48450.543399226064540 48956.332758653087300 60754.000000000000000 62140.877909210516108 68347.651531815575105 68003.039851606485307 57584.00000000...
result:
ok 2274 numbers
Test #18:
score: 0
Accepted
time: 113ms
memory: 3912kb
input:
2271 5 -21608 38109 40 3288 29821 3282 29828 3277 29833 3268 29840 3258 29846 3256 29847 3250 29849 3240 29852 3233 29854 3228 29855 3220 29856 3218 29856 3212 29855 3210 29854 3205 29851 3197 29846 3189 29840 3179 29831 3176 29827 3171 29820 3165 29811 3163 29807 3160 29797 3167 29789 3172 29784 31...
output:
59717.000000000000000 62108.000000000000000 57257.000000000000000 66813.389315562535181 65446.000000000000000 59441.159960846189449 55000.000000000000000 70062.367642717881239 61092.722270507134990 62176.000000000000000 58821.000000000000000 55055.672609852866142 52351.000000000000000 63396.88025841...
result:
ok 2271 numbers
Test #19:
score: 0
Accepted
time: 142ms
memory: 3920kb
input:
1997 5 -685963307 853750511 100 372319561 823923262 372319594 823923310 372319621 823923350 372319653 823923400 372319681 823923445 372319710 823923492 372319721 823923511 372319739 823923548 372319750 823923572 372319764 823923603 372319780 823923639 372319785 823923651 372319795 823923692 37231980...
output:
1539712423.494848530157469 1259604092.000000000000000 1674868892.000000000000000 1100380125.000000000000000 1314807604.000000000000000 1476460075.000000000000000 1657770700.000000000000000 1681539925.000000000000000 1479119212.000000000000000 1631814313.223218382685445 1480527084.000000000000000 171...
result:
ok 1997 numbers
Test #20:
score: 0
Accepted
time: 134ms
memory: 3868kb
input:
1998 5 -923518671 909017531 100 921654169 61734551 921654198 61734600 921654221 61734644 921654467 61735150 921654480 61735178 921654498 61735219 921654513 61735254 921654521 61735279 921654530 61735323 921654538 61735365 921654541 61735403 921654531 61735447 921654520 61735489 921654511 61735514 92...
output:
1832536202.000000000000000 1443062393.553619663813151 1680030554.000000000000000 1744446320.930086122010835 1205113181.000000000000000 1326796808.000000000000000 1213723402.194488483364694 1578305206.621328872861341 1334732988.958808328257874 1129359860.218818572815508 1542969200.000000000000000 118...
result:
ok 1998 numbers
Test #21:
score: 0
Accepted
time: 50ms
memory: 3924kb
input:
8334 5 -744567334 955216804 5 -781518205 -852078097 -781516900 -852078384 -781516392 -852076569 -781518329 -852076047 -781519925 -852077600 3 871916993 -588891734 871918253 -588892444 871918745 -588891234 5 -393011614 -131855702 -393010699 -131856607 -393008846 -131856475 -393009388 -131854587 -3930...
output:
1699779738.691979192313738 1527796251.090272669098340 1655793192.926833342062309 1672892305.000000000000000 1368134291.000000000000000 1463897904.000000000000000 1363175149.000000000000000 1296404984.000000000000000 1424194359.000000000000000 1029663073.000000000000000 1778254477.000000000000000 150...
result:
ok 8334 numbers
Test #22:
score: 0
Accepted
time: 50ms
memory: 3812kb
input:
8334 5 -829825735 601784461 5 714610651 -975306485 714610404 -975306399 714609317 -975307983 714610491 -975308230 714610739 -975307741 5 -478043159 166470433 -478042674 166466411 -478041707 166468042 -478041795 166469844 -478042741 166471670 5 -574496064 117824476 -574497244 117826229 -574498481 117...
output:
1431606742.600444138166495 1730324827.000000000000000 1908650236.118417557445355 1890778564.000000000000000 1340666568.000000000000000 1319811364.000000000000000 1421853075.000000000000000 1490477103.000000000000000 1873755437.000000000000000 1570402518.000000000000000 1395074328.000000000000000 161...
result:
ok 8334 numbers
Test #23:
score: 0
Accepted
time: 80ms
memory: 3932kb
input:
8334 5 -913048220 656325022 10 -166143242 -673183677 -166142264 -673184186 -166140797 -673184088 -166139127 -673183351 -166137499 -673182562 -166137324 -673182139 -166138589 -673181699 -166140193 -673181144 -166141964 -673181446 -166142469 -673181967 6 -945075435 650359787 -945076678 650360341 -9450...
output:
1569349415.914345892262645 1880676443.000000000000000 1316771742.000000000000000 1107991785.000000000000000 1549997697.444173724041320 1824059958.000000000000000 1444570056.000000000000000 1418459383.000000000000000 1505112947.000000000000000 1326424768.431033400702290 1369086579.000000000000000 130...
result:
ok 8334 numbers
Test #24:
score: 0
Accepted
time: 85ms
memory: 3904kb
input:
8334 5 -894419066 986206278 10 438340992 -480519836 438342647 -480520761 438343571 -480520315 438344403 -480519603 438345824 -480518172 438346510 -480516618 438345277 -480515164 438343852 -480515669 438342447 -480516557 438340542 -480518404 10 -240550387 -258562092 -240551334 -258563442 -240550967 -...
output:
1880625344.000000000000000 1466897680.337360215140507 1494132112.283291047438979 1408363298.695816568215378 1390133394.000000000000000 1485867441.421866823220626 1590839506.000000000000000 1556522174.344312858767807 1614474976.000000000000000 1231693774.000000000000000 1493791516.000000000000000 129...
result:
ok 8334 numbers
Test #25:
score: 0
Accepted
time: 134ms
memory: 3872kb
input:
2004 5 -851485863 922356807 100 806952389 -620838027 806952796 -620839051 806952929 -620839348 806953823 -620841099 806955255 -620843002 806956607 -620844576 806958351 -620846452 806958738 -620846812 806960698 -620848575 806962485 -620850179 806964065 -620851590 806965685 -620852945 806966771 -62085...
output:
1773665579.396214644890279 1245647086.000000000000000 1698103416.989566450589336 1192937188.000000000000000 1495810673.000000000000000 1331670703.053293028729968 1550766126.000000000000000 1572739123.000000000000000 1403505529.750806877505966 1564997181.000000000000000 1537044013.000000000000000 109...
result:
ok 2004 numbers
Test #26:
score: 0
Accepted
time: 136ms
memory: 3952kb
input:
2001 5 -807916374 951640620 100 471800611 -609005450 471800882 -609005598 471802784 -609006412 471803897 -609006871 471804858 -609007255 471806094 -609007726 471807518 -609008221 471808084 -609008358 471830663 -609011338 471831366 -609011271 471832821 -609011131 471834532 -609010816 471835066 -60901...
output:
1759556994.000000000000000 1438355564.000000000000000 1162987446.000000000000000 1473770184.000000000000000 1660711599.304879248840734 1258059674.000000000000000 1509519860.000000000000000 1502232261.351548268459737 1622595242.000000000000000 1116409602.000000000000000 1497870504.000000000000000 170...
result:
ok 2001 numbers
Test #27:
score: 0
Accepted
time: 171ms
memory: 3896kb
input:
10000 4 -876359283 597412519 84 -787103890 -543670676 -787103889 -543670617 -787103891 -543670566 -787103894 -543670542 -787103904 -543670486 -787103936 -543670413 -787103965 -543670352 -787104009 -543670286 -787104058 -543670216 -787104095 -543670169 -787104166 -543670087 -787104201 -543670047 -787...
output:
1473771802.000000000000000 1184445109.000000000000000 1273369968.000000000000000 1842104023.149110003956594 1401842961.365504766814411 1220676735.000000000000000 1584003979.000000000000000 1936415212.603602312272415 1439576635.000000000000000 1536198292.000000000000000 1744272262.969543530372903 136...
result:
ok 10000 numbers
Test #28:
score: 0
Accepted
time: 161ms
memory: 3908kb
input:
10000 4 -514589336 681051743 84 260136457 -778772788 260136398 -778772766 260136148 -778772704 260136080 -778772696 260135984 -778772691 260135939 -778772690 260135861 -778772692 260135765 -778772698 260135685 -778772707 260135618 -778772723 260135537 -778772753 260135478 -778772779 260135382 -77877...
output:
1195641079.000000000000000 1569912356.000000000000000 1518856735.000000000000000 1342714391.000000000000000 1214213079.000000000000000 1283220624.000000000000000 1796134134.931510697351769 1801713431.000000000000000 1728469471.000000000000000 1970762015.000000000000000 1597570818.429018666502088 154...
result:
ok 10000 numbers
Test #29:
score: 0
Accepted
time: 167ms
memory: 3960kb
input:
10000 4 -854654469 777152266 84 -384437137 684560566 -384431810 684557290 -384422840 684552374 -384419937 684550899 -384413227 684547586 -384405159 684543922 -384396194 684540151 -384388285 684537901 -384381318 684537075 -384371666 684537161 -384370437 684537184 -384360706 684539373 -384351311 68454...
output:
1631806735.000000000000000 1424123468.000000000000000 1389677992.918774294084869 1576800025.000000000000000 1598916583.000000000000000 1464498679.000000000000000 1442804058.000000000000000 1666175099.000000000000000 1255050820.570157381473109 1561177121.734743743902072 1064468001.845047503069509 110...
result:
ok 10000 numbers
Test #30:
score: 0
Accepted
time: 172ms
memory: 3912kb
input:
10000 4 -771015246 658891315 84 45385710 -738165668 45385885 -738161269 45383143 -738154169 45381155 -738149591 45376641 -738139660 45372989 -738132856 45368735 -738126806 45366451 -738123774 45362745 -738119336 45356788 -738112594 45349125 -738104101 45342610 -738097460 45340181 -738095044 45333803...
output:
1429897974.608923891093582 1599820440.000000000000000 1236214920.000000000000000 1209017337.677535888506100 1873859588.000000000000000 1497435375.642676783725619 1478507602.000000000000000 1482210060.000000000000000 1260810353.914800924248993 1951395191.179261310491711 1753080128.449704686063342 158...
result:
ok 10000 numbers
Test #31:
score: 0
Accepted
time: 171ms
memory: 3836kb
input:
10000 4 -674914723 624418103 84 468468889 -499756104 468162339 -498888072 467601497 -497899887 466878219 -497038435 466134518 -496365273 465159179 -495560087 464211972 -495044122 464079613 -494973564 452212861 -493825380 452065957 -493824296 451407015 -493875285 450463932 -494062942 449543371 -49428...
output:
1264072929.761670227744617 1254262766.000000000000000 1663984089.000000000000000 1010711694.654035213636234 1470813291.000000000000000 1650827665.882998784189112 1254261966.000000000000000 1831622248.000000000000000 1374140339.000000000000000 1281253922.248064010171220 1567809316.000000000000000 139...
result:
ok 10000 numbers
Test #32:
score: 0
Accepted
time: 166ms
memory: 3912kb
input:
10000 4 -793175674 721626772 84 159345272 608883920 159698008 608015757 160118829 607278757 160699965 606292987 161301597 605353770 161836414 604600518 162258566 604103305 163119033 603125136 163652511 602547566 164390150 601772176 164814728 601358247 165571440 600703011 166011409 600345459 16678223...
output:
1504659632.681522995233536 1455208210.000000000000000 1338582258.145939962589182 1165325420.677496582968161 1454903090.000000000000000 1213494640.000000000000000 1777063188.000000000000000 1517563822.731618181569502 1068984015.000000000000000 1565287784.000000000000000 1375082267.000000000000000 136...
result:
ok 10000 numbers
Test #33:
score: 0
Accepted
time: 90ms
memory: 3988kb
input:
5 10000 -525096166 506746434 3000 528096060 105801840 528097856 105801473 528099429 105801157 528100970 105800858 528101306 105800793 528101727 105800712 528103238 105800425 528104747 105800149 528105868 105799944 528107064 105799731 528108575 105799463 528110431 105799134 528111385 105798965 528112...
output:
397560103.481633995921584 343764949.516926048934693 314995685.804049638914876 470388562.840521937760059 369514676.758089797600405
result:
ok 5 numbers
Test #34:
score: 0
Accepted
time: 90ms
memory: 4112kb
input:
5 10000 -501317113 815908190 3000 693478209 681557167 693478416 681557435 693479605 681558977 693480659 681560347 693481636 681561619 693481947 681562025 693482896 681563268 693484271 681565098 693485322 681566509 693486379 681567938 693487204 681569054 693488476 681570775 693489313 681571908 693490...
output:
1239559910.446096407365985 62025115.007696370907070 621348456.966061291808728 278611566.925793470611097 934652762.209640451881569
result:
ok 5 numbers
Test #35:
score: 0
Accepted
time: 152ms
memory: 4060kb
input:
5 10000 -700327508 702989707 3000 -254692935 -831597680 -254694172 -831597571 -254696030 -831597409 -254697316 -831597299 -254699111 -831597155 -254700632 -831597034 -254702548 -831596882 -254703508 -831596808 -254705371 -831596670 -254706070 -831596619 -254707817 -831596493 -254708500 -831596446 -2...
output:
240317371.961796112111188 417228210.062280719343107 145169437.634132524544839 154695358.793191389180720 661574446.565723832405638
result:
ok 5 numbers
Test #36:
score: 0
Accepted
time: 146ms
memory: 3988kb
input:
5 10000 -535756158 936247062 3000 166383130 232330358 166382163 232330545 166381842 232330607 166381505 232330671 166380376 232330885 166379421 232331055 166377849 232331322 166376034 232331630 166374935 232331812 166373259 232332089 166371346 232332404 166370470 232332548 166369905 232332639 166369...
output:
321848681.541545369313098 47132901.320173342606722 1221805373.452837746939622 1344708697.960075947456062 7305558.394949239705966
result:
ok 5 numbers
Test #37:
score: 0
Accepted
time: 143ms
memory: 4044kb
input:
2 10000 -758768479 517152843 3000 -196475875 -622544724 -196474245 -622545180 -196474129 -622545212 -196472878 -622545555 -196470969 -622546070 -196470160 -622546279 -196468698 -622546651 -196468113 -622546798 -196466578 -622547183 -196465475 -622547454 -196464203 -622547765 -196462700 -622548130 -1...
output:
253995254.631699068151647 1328238926.000000000000000
result:
ok 2 numbers
Test #38:
score: 0
Accepted
time: 138ms
memory: 4080kb
input:
2 10000 -573977895 641919861 3000 347121719 404913819 347122089 404915132 347122631 404917094 347122901 404918076 347123072 404918705 347123279 404919476 347123792 404921397 347124043 404922339 347124204 404922955 347124654 404924689 347125025 404926127 347125471 404927873 347125713 404928830 347126...
output:
173821476.891148405367858 1528471752.000000000000000
result:
ok 2 numbers
Test #39:
score: 0
Accepted
time: 115ms
memory: 3976kb
input:
1 648 -899534410 747361962 3000 211927638 493123207 211929268 493123656 211930155 493123901 211930800 493124086 211932237 493124502 211933656 493124916 211935226 493125375 211937118 493125929 211939099 493126531 211940702 493127019 211941925 493127397 211943096 493127759 211944029 493128048 21194475...
output:
1309979658.946250796201639
result:
ok found '1309979658.946250677', expected '1309979658.946250916', error '0.000000000'
Test #40:
score: 0
Accepted
time: 113ms
memory: 4004kb
input:
1 657 -611575720 891439134 3000 491719655 -542798612 491719658 -542799409 491719666 -542801221 491719679 -542802627 491719693 -542804004 491719721 -542805714 491719761 -542807477 491719782 -542808319 491719830 -542809996 491719886 -542811761 491719897 -542812096 491719958 -542813875 491719996 -54281...
output:
1432477725.356502106995322
result:
ok found '1432477725.356502056', expected '1432477725.356502056', error '0.000000000'
Test #41:
score: 0
Accepted
time: 171ms
memory: 4392kb
input:
5 10000 -856871457 916406527 100000 623227399 -926813077 623226044 -926814196 623225217 -926814879 623223907 -926815961 623223067 -926816655 623221482 -926817965 623220871 -926818470 623220092 -926819114 623218435 -926820484 623218013 -926820833 623216069 -926822441 623214200 -926823987 623212464 -9...
output:
-1 -1 -1 -1 -1
result:
ok 5 numbers
Test #42:
score: 0
Accepted
time: 184ms
memory: 4440kb
input:
5 10000 -699668634 624085557 100000 506101157 -445281877 506099344 -445280103 506097486 -445278285 506096559 -445277378 506096281 -445277106 506094668 -445275528 506094484 -445275348 506093473 -445274359 506092374 -445273284 506091779 -445272702 506090503 -445271454 506089547 -445270519 506088365 -4...
output:
-1 -1 220429319.204412045743084 -1 353925892.990976274624700
result:
ok 5 numbers
Test #43:
score: 0
Accepted
time: 243ms
memory: 4260kb
input:
5 10000 -622037374 817682512 100000 -625558743 -704636222 -625558729 -704635708 -625558689 -704634239 -625558645 -704632623 -625558596 -704630818 -625558559 -704629455 -625558512 -704627718 -625558462 -704625869 -625558419 -704624273 -625558408 -704623864 -625558394 -704623343 -625558347 -704621591 ...
output:
-1 -1 -1 -1 -1
result:
ok 5 numbers
Test #44:
score: 0
Accepted
time: 244ms
memory: 4512kb
input:
5 10000 -644173104 652456201 100000 541445295 171993628 541445566 171995010 541445715 171995770 541445953 171996985 541445972 171997082 541446355 171999041 541446730 172000960 541447072 172002712 541447310 172003932 541447682 172005839 541448025 172007598 541448409 172009568 541448554 172010312 5414...
output:
-1 -1 -1 -1 218592599.112336853737361
result:
ok 5 numbers
Test #45:
score: 0
Accepted
time: 158ms
memory: 4212kb
input:
1 9046 -641166309 543165538 100000 -951104070 580563380 -951104422 580563946 -951105279 580565324 -951106332 580567017 -951107420 580568766 -951108596 580570656 -951109784 580572565 -951110770 580574149 -951111357 580575092 -951111743 580575712 -951112233 580576499 -951112464 580576870 -951113492 58...
output:
-1
result:
ok found '-1.000000000', expected '-1.000000000', error '-0.000000000'
Test #46:
score: 0
Accepted
time: 158ms
memory: 4348kb
input:
1 9045 -740410642 652751190 100000 419533646 402821427 419534234 402821769 419536223 402822926 419538064 402823997 419540039 402825146 419541895 402826226 419543842 402827359 419545349 402828236 419546581 402828953 419548227 402829911 419548818 402830255 419550371 402831159 419551522 402831829 41955...
output:
-1
result:
ok found '-1.000000000', expected '-1.000000000', error '-0.000000000'
Test #47:
score: 0
Accepted
time: 121ms
memory: 5392kb
input:
1 18 -948940253 629185104 100000 -833855325 174303631 -833856017 174302309 -833856901 174300620 -833857808 174298887 -833858536 174297496 -833859435 174295778 -833860349 174294031 -833861196 174292412 -833861887 174291091 -833862420 174290072 -833863407 174288185 -833864012 174287028 -833864551 1742...
output:
1389928213.815016854088753
result:
ok found '1389928213.815016747', expected '1389928213.815016747', error '0.000000000'
Test #48:
score: 0
Accepted
time: 119ms
memory: 5020kb
input:
1 20 -934151185 527681557 100000 29124091 329049242 29124404 329047347 29124592 329046209 29124842 329044697 29125093 329043179 29125387 329041401 29125495 329040748 29125759 329039152 29126077 329037230 29126401 329035272 29126545 329034402 29126703 329033448 29126783 329032965 29127027 329031492 2...
output:
1461832742.000000000000000
result:
ok found '1461832742.000000000', expected '1461832742.000000000', error '0.000000000'
Extra Test:
score: 0
Extra Test Passed