QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#593161 | #5433. Absolute Difference | pengpeng_fudan | WA | 0ms | 4000kb | C++14 | 2.6kb | 2024-09-27 12:13:16 | 2024-09-27 12:13:18 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using ll =long long;
void solve(){
int n,m;
cin>>n>>m;
vector<pair<ll,ll>> a(n+1);
vector<pair<ll,ll>> b(m+1);
for(int i=1;i<=n;i++) cin>>a[i].first>>a[i].second;
for(int i=1;i<=m;i++) cin>>b[i].first>>b[i].second;
sort(a.begin()+1,a.end(),[&](pair<ll,ll> a,pair<ll,ll> b){return a.second<b.second;});
sort(b.begin()+1,b.end(),[&](pair<ll,ll> a,pair<ll,ll> b){return a.second<b.second;});
vector<__int128_t> qza(n+1),qzb(m+1);
ll suma=0,sumb=0;
for(int i=1;i<=n;i++) suma+=a[i].second-a[i].first;
for(int i=1;i<=n;i++){
if(suma==0) qza[i]=1;
else qza[i]=(a[i].second-a[i].first);
}
for(int i=1;i<=m;i++) sumb+=b[i].second-b[i].first;
for(int i=1;i<=m;i++){
if(sumb==0) qzb[i]=1;
else qzb[i]=(b[i].second-b[i].first);
}
if(suma==0) suma=n;
if(sumb==0) sumb=m;
__int128_t ans=0;
__int128_t anb=0;
auto ope=[&](int t)->void {
__int128_t sb=0,sqzb=0;
int lo=1;
for(int i=1;i<(int)a.size();i++){
while(lo!=(int)b.size()&&b[lo].second<=a[i].first) {
sb+=(b[lo].second+b[lo].first)*qzb[lo];
sqzb+=qzb[lo];
lo++;
}
ans+=-sb*qza[i]+sqzb*qza[i]*(a[i].first+a[i].second);
int ro=lo;
while(ro!=(int)b.size()&&(t?b[ro].second<a[i].second:b[ro].second<=a[i].second)){
auto [x1,x2]=a[i];
auto [y1,y2]=b[ro];
if(x1!=x2){
if(y1==y2){
ans+=qza[i]*qzb[ro]*((y1-x1)*(y1-x1)+(x2-y1)*(x2-y1));
}
else{
if(y1<=x1){
ans+=((__int128_t)(x1+x2)-(y1+y2))*qza[i]*qzb[ro];
anb-=(__int128_t)(x1-y2)*(x1-y2)*(x1-y2);
}
else{
ans+=((__int128_t)(x1+x2)-(y1+y2))*qza[i]*qzb[ro];
anb-=(__int128_t)(x1-y2)*(x1-y2)*(x1-y2)-(__int128_t)(x1-y1)*(x1-y1)*(x1-y1);
}
}
}
// cerr<<b[ro].second<<' '<<a[i].second<<' '<<ans<<'\n';
ro++;
}
}
};
ope(1);
swap(a,b);swap(qza,qzb);
ope(0);
cout<<setprecision(12)<<((long double)(ans*3+anb*2)/((__int128_t)6*suma*sumb))<<'\n';
}
int main() {
ios::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
int _ = 1;
while (_--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3780kb
input:
1 1 0 1 0 1
output:
0.333333333333
result:
ok found '0.333333333', expected '0.333333333', error '0.000000000'
Test #2:
score: 0
Accepted
time: 0ms
memory: 4000kb
input:
1 1 0 1 1 1
output:
0.5
result:
ok found '0.500000000', expected '0.500000000', error '0.000000000'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3732kb
input:
1 1 -1000000000 1000000000 -1000000000 1000000000
output:
666666666.667
result:
ok found '666666666.667000055', expected '666666666.666666627', error '0.000000000'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3784kb
input:
1 1 -1000000000 0 0 1000000000
output:
1000000000
result:
ok found '1000000000.000000000', expected '1000000000.000000000', error '0.000000000'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3776kb
input:
1 1 -1000000000 -1000000000 -1000000000 1000000000
output:
1000000000
result:
ok found '1000000000.000000000', expected '1000000000.000000000', error '0.000000000'
Test #6:
score: 0
Accepted
time: 0ms
memory: 3784kb
input:
1 1 -999999999 1000000000 -1000000000 -1000000000
output:
1000000000.5
result:
ok found '1000000000.500000000', expected '1000000000.500000000', error '0.000000000'
Test #7:
score: -100
Wrong Answer
time: 0ms
memory: 3840kb
input:
1 1 -1000000000 1000000000 -999999999 -999999999
output:
1.999999998e+18
result:
wrong answer 1st numbers differ - expected: '999999999.0000000', found: '1999999998000000000.0000000', error = '1999999999.0000000'