QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#374954 | #5433. Absolute Difference | huzhaoyang | WA | 1ms | 4048kb | C++14 | 2.0kb | 2024-04-02 19:56:21 | 2024-04-02 19:56:21 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define fi first
#define se second
typedef long long ll;
typedef __int128 LL;
typedef pair<int,int> pii;
const int N=100005;
int n,m;
ll nn,mm;
LL ans;
pii a[N],b[N];
struct Data{
ll P;LL E;
Data operator + (const Data &n)const{
return Data{P+n.P,E+n.E};
}
double operator - (const Data &n)const{
return E*n.P-P*n.E;
}
}sa,sb,Sa,Sb;
ll sqr(int k){
return (ll)k*k;
}
LL cube(int k){
return (LL)k*k*k;
}
LL calc(pii x,pii y){
if ((!nn)&&(!mm))return 6LL*abs(x.fi-y.fi);
if ((!nn)||(!mm)){
if (!mm)swap(x,y);
if (x.fi<y.fi)return (LL)3*(y.se-y.fi)*(0LL+y.fi+y.se-x.fi-x.fi);
if (x.fi>y.se)return (LL)3*(y.se-y.fi)*(0LL+x.fi+x.fi-y.fi-y.se);
return (LL)3*(sqr(x.fi-y.fi)+sqr(y.se-x.fi));
}
if (x.fi>y.fi)swap(x,y);
if (x.se<y.fi)return (LL)3*(x.se-x.fi)*(y.se-y.fi)*(0LL+y.fi+y.se-x.fi-x.se);
LL s=(LL)3*(y.fi-x.fi)*(y.se-y.fi)*(y.se-x.fi);
x.fi=y.fi;
if (x.se>y.se)swap(x,y);
return s+2*cube(x.se-x.fi)+(LL)3*(x.se-x.fi)*(y.se-x.se)*(y.se-x.fi);
}
int main(){
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++)scanf("%d%d",&a[i].fi,&a[i].se);
for(int i=1;i<=m;i++)scanf("%d%d",&b[i].fi,&b[i].se);
sort(a+1,a+n+1),sort(b+1,b+m+1);
for(int i=1;i<=n;i++)nn+=a[i].se-a[i].fi;
for(int i=1;i<=m;i++)mm+=b[i].se-b[i].fi;
sa=sb=Sa=Sb=Data{0,0};
for(int i=1,j=1;(i<=n)||(j<=m);){
if ((i<=n)&&(j<=m))ans+=calc(a[i],b[j]);
if ((i<=n)&&((j>m)||(a[i].se<b[j].se))){
Data o=Data{(nn ? a[i].se-a[i].fi : 1),3*(sqr(a[i].se)-sqr(a[i].fi))};
i++,ans+=o-sb,sb=sb+Sb,Sa=Sa+o,Sb=Data{0,0};
}
else{
Data o=Data{(mm ? b[j].se-b[j].fi : 1),3*(sqr(b[j].se)-sqr(b[j].fi))};
j++,ans+=o-sa,sa=sa+Sa,Sb=Sb+o,Sa=Data{0,0};
}
}
printf("%.9f\n",ans/6.0/(nn ? nn : n)/(mm ? mm : m));
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3940kb
input:
1 1 0 1 0 1
output:
0.333333333
result:
ok found '0.333333333', expected '0.333333333', error '0.000000000'
Test #2:
score: 0
Accepted
time: 0ms
memory: 4036kb
input:
1 1 0 1 1 1
output:
0.500000000
result:
ok found '0.500000000', expected '0.500000000', error '0.000000000'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3840kb
input:
1 1 -1000000000 1000000000 -1000000000 1000000000
output:
666666666.666666627
result:
ok found '666666666.666666627', expected '666666666.666666627', error '0.000000000'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3792kb
input:
1 1 -1000000000 0 0 1000000000
output:
999999999.999999881
result:
ok found '999999999.999999881', expected '1000000000.000000000', error '0.000000000'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3828kb
input:
1 1 -1000000000 -1000000000 -1000000000 1000000000
output:
1000000000.000000000
result:
ok found '1000000000.000000000', expected '1000000000.000000000', error '0.000000000'
Test #6:
score: 0
Accepted
time: 0ms
memory: 3788kb
input:
1 1 -999999999 1000000000 -1000000000 -1000000000
output:
1000000000.500000000
result:
ok found '1000000000.500000000', expected '1000000000.500000000', error '0.000000000'
Test #7:
score: 0
Accepted
time: 1ms
memory: 3848kb
input:
1 1 -1000000000 1000000000 -999999999 -999999999
output:
999999999.000000000
result:
ok found '999999999.000000000', expected '999999999.000000000', error '0.000000000'
Test #8:
score: 0
Accepted
time: 0ms
memory: 3824kb
input:
1 1 1000000000 1000000000 -1000000000 -1000000000
output:
2000000000.000000000
result:
ok found '2000000000.000000000', expected '2000000000.000000000', error '0.000000000'
Test #9:
score: 0
Accepted
time: 1ms
memory: 4048kb
input:
1000 1000 -2175 -2174 -1068 -1065 -1721 -1718 777 834 1162 1169 -3529 -3524 3966 3993 1934 1952 -234 -223 -4967 -4947 8500 8510 5272 5276 -6048 -6033 -34 -22 700 705 -7890 -7886 5538 5543 4114 4126 -9201 -9162 -1521 -1519 -5103 -5100 439 441 993 997 -1684 -1680 -8413 -8404 6724 6728 -3242 -3239 2616...
output:
6717.117145739
result:
ok found '6717.117145739', expected '6717.117145739', error '0.000000000'
Test #10:
score: -100
Wrong Answer
time: 1ms
memory: 3892kb
input:
1000 1000 -5010 -4999 -2128 -2113 -5798 -5765 705 713 -3956 -3938 -5308 -5307 6759 6772 -772 -770 -860 -859 2308 2323 -5500 -5500 5140 5177 -6747 -6733 7509 7511 8864 8870 -6382 -6374 1901 1904 -5763 -5760 3019 3027 2962 2963 -314 -301 -222 -203 -726 -724 -62 -58 -1203 -1195 -5216 -5215 -4298 -4292 ...
output:
3307.241175758
result:
wrong answer 1st numbers differ - expected: '6682.5811275', found: '3307.2411758', error = '0.5050952'