QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#624724#5540. City HallOlderaWA 192ms31032kbC++175.6kb2024-10-09 16:29:382024-10-09 16:29:40

Judging History

你现在查看的是最新测评结果

  • [2024-10-09 16:29:40]
  • 评测
  • 测评结果:WA
  • 用时:192ms
  • 内存:31032kb
  • [2024-10-09 16:29:38]
  • 提交

answer

#pragma GCC optimize ("O3")

//#incluse <bits/stdc++.h>

#include <iostream>     // Input/output stream objects
#include <fstream>      // File stream objects
#include <sstream>      // String stream objects
#include <iomanip>      // Input/output manipulators
#include <string>       // String class and functions
#include <vector>       // Dynamic array
#include <list>         // Doubly linked list
#include <set>          // Set container
#include <map>          // Map container
#include <queue>        // Queue container
#include <stack>        // Stack container
#include <algorithm>    // Algorithms on sequences (e.g., sort, find)
#include <cmath>        // Mathematical functions
#include <ctime>        // Date and time functions
#include <cstdlib>      // General purpose functions (e.g., memory management)
#include <cstring>      // C-style string functions
#include <cctype>       // Character classification functions
#include <cassert>      // Assert function for debugging
#include <exception>    // Standard exceptions
#include <functional>   // Function objects
#include <iterator>     // Iterator classes
#include <limits>       // Numeric limits
#include <locale>       // Localization and internationalization
#include <numeric>      // Numeric operations (e.g., accumulate)
#include <random>       // Random number generators
#include <stdexcept>    // Standard exception classes
#include <typeinfo>     // Runtime type information
#include <utility>      // Utility components (e.g., std::pair)
#include <tuple>
#include <cstdio>
#include <bitset>

using namespace std;

// ************ Setting up  ************
#define FPTU ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define TIME  (1.0 * clock() / CLOCKS_PER_SEC)
#define BUG(x) {cerr << #x << " = " << x << endl;}
#define pii pair<int,int>
#define pip pair<int,pii>
#define ppi pair<pii,int>
#define ll  long long
#define ull unsigned long long
#define usi unsigned int
#define pll pair<ll,ll>
#define plp pair<ll,pll>
#define ppl pair<pll,ll>
#define pil pair<int,ll>
#define pli pair<ll,int>
#define oo 1000111000
#define ooo 1000111000111000111
#define inf 0x3f //4557430888798830399
#define fi first
#define se second
#define vt vector
#define pb push_back
#define all(arr) arr.begin(),arr.end()
#define bit(n, i) (((n) >> (i)) & 1)
#define db(x) cerr << #x << " = " << (x) << '\n';

ll rand_num(ll a,ll b) {
    random_device rd; mt19937 mt(rd()); uniform_int_distribution<ll> dist(a,b);
    return dist(mt);
}

int mod=1e9+7; // MODDDDDDDDDDDDD

template <typename T> void minimize(T &a, T b){ if(a>b)  a=b; }
template <typename T> void maximize(T &a, T b){ if(a<b)  a=b; }
template <typename T> void add(T &a, T b){ a+=b; if(a>=mod) a-=mod; }
template <typename T> T gcd(T a, T b){
    while(a!=0&&b!=0) if(a>b) a%=b; else b%=a; return a+b; }
void read_file()
{
    freopen("sample.inp","r",stdin);
    freopen("sample.out","w",stdout);
}
// =========> <3 VietHai1709 <3  <=========
struct line{
    ll a,b;
    line(ll x=0,ll y=ooo)
    {
        a=x; b=y;
    }
    ll get(ll x)
    {
        return a*x+b;
    }

};
struct ConvextHullTrick{
    int n;
    int flag;
    vt<line> Line;
    ConvextHullTrick(){
        n=0;
        flag=0;
        Line.clear();
    }
    bool bad(line u,line v,line w)
    {
        //return (double)(u.b-w.b)/(w.a-u.a)<=(double)(u.b-v.b)/(v.a-u.a);
        return (u.b-w.b)*(v.a-u.a)<=(u.b-v.b)*(w.a-u.a);
    }
    void add(line L)
    {
        while(n>=2 && bad(Line[n-2],Line[n-1],L))
        {
            Line.pop_back();
            n--;
        }
        Line.pb(L);
        n++;
    }
    ll query(ll x)
    {
        if(flag>n-1) flag=n-1;
        while(flag+1<n && Line[flag].get(x)>Line[flag+1].get(x)) flag++;
        return Line[flag].get(x);
    }
};

void Dijktra(int st,vt<vt<pair<int,ll>>> Edge, vt<ll> &dis)
{
    dis[st]=0;
    priority_queue<pli,vt<pli>,greater<pli>> pq;
    pq.push({0,st});
    while(!pq.empty())
    {
        pli k=pq.top(); pq.pop();
        int u = k.se;
        ll w = k.fi;
        
        if (w > dis[u]) continue;

        for(auto &[v,x]: Edge[u]) {
           if (dis[v] > w + x) {
               dis[v] = x + w;
               pq.push({dis[v], v});
           }
        }
    }
}
ll dis(ll a,ll b){
    return (a-b)*(a-b);
}
bool cmp(pll &a, pll &b){
    return a.fi>b.fi;
}
void Minnnnnnn()
{
    int n,m,s,t;
    cin>>n>>m>>s>>t;
    vt<ll> h(n+1);
    for(int i=1;i<=n;i++) cin>>h[i];
    vt<vt<pair<int,ll>> > ke(n+1);
    while(m--){
        int u,v;
        cin>>u>>v;
        ll w=dis(h[u],h[v]);
        ke[u].pb({v,w});
        ke[v].pb({u,w});
    }
    vt<ll> F(n+1,ooo);
    vt<ll> G(n+1,ooo);
    Dijktra(s, ke, F);
    Dijktra(t, ke, G);
    
    ll ans=ooo;
    for(auto &[u,_]:ke[s]) ans=min(ans,G[u]*2);
    for(auto &[u,_]:ke[t]) ans=min(ans,F[u]*2);
    //cout<<setprecision(2)<<fixed<<ans/2.0<<'\n';
    for(int i=1;i<=n;i++) if(i!=s && i!=t){
        ConvextHullTrick myCHT;
        vt<pll> a;
        for(auto &[u,_]:ke[i]){
            a.pb({h[u]*-2, h[u]*h[u] + G[u]*2});
        }
        sort(all(a),cmp); //reverse(all(a));
        for(auto [x,y]:a) myCHT.add(line(x,y));
        for(auto &[u,_]:ke[i]){
            ans=min(ans, F[u]*2+h[u]*h[u]+myCHT.query(h[u]));
        }
    }
    cout<<setprecision(2)<<fixed<<ans/2.0;
}


int main(){
    
    FPTU; //fast
   // read_file();
    
    int __=1;
    //cin>>__;
    for(int _=1;_<=__;_++)
    {
        Minnnnnnn();
    }
    cerr << "Time elapsed: " << TIME << " s.\n";

    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3896kb

input:

5 6 1 3
5 100 8 2 10
1 2
2 3
2 5
1 4
4 5
3 5

output:

4.50

result:

ok found '4.5000000', expected '4.5000000', error '0.0000000'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3920kb

input:

5 5 1 5
1 2 10 10 4
1 2
2 3
2 4
3 5
4 5

output:

3.00

result:

ok found '3.0000000', expected '3.0000000', error '0.0000000'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3948kb

input:

5 4 1 4
8 8 8 8 100
1 2
2 3
3 4
4 5

output:

0.00

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #4:

score: 0
Accepted
time: 0ms
memory: 3876kb

input:

2 1 1 2
0 100000
1 2

output:

0.00

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #5:

score: 0
Accepted
time: 81ms
memory: 26956kb

input:

632 199396 167 549
22513 93521 41403 35441 97617 53210 62622 4751 81863 14470 2994 93092 40432 30872 34423 36577 92540 92961 4110 14691 83321 10680 89112 80890 31108 24492 8973 42636 33792 27400 82361 85003 68940 31221 48625 276 52755 6649 34381 54399 6063 22628 17715 54052 58175 86609 82622 29917 9...

output:

0.00

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #6:

score: 0
Accepted
time: 61ms
memory: 22052kb

input:

600 179700 396 574
83219 94660 9266 1939 32637 7117 33396 76947 42614 41001 87026 60210 25868 36044 35276 6147 36198 25195 50981 68230 32619 62563 28509 46643 43304 36195 99724 30903 77230 57923 36939 81397 17374 90947 48623 38120 48914 96481 98146 31707 9427 58735 82986 31328 94507 69081 51908 4188...

output:

0.00

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #7:

score: 0
Accepted
time: 190ms
memory: 29648kb

input:

100000 200000 66364 98254
48399 8344 35365 18555 95271 13113 75220 25062 73969 71647 58212 68205 36310 45496 6965 59960 71592 81323 44341 95796 61521 63298 77830 16145 73103 83477 85246 53680 67289 68475 64978 43576 18969 28023 22848 55164 31276 12825 70999 49142 77203 40134 88148 59337 2357 70519 8...

output:

1019365473.00

result:

ok found '1019365473.0000000', expected '1019365473.0000000', error '0.0000000'

Test #8:

score: 0
Accepted
time: 175ms
memory: 30580kb

input:

100000 200000 21412 38673
24050 75090 3692 20770 26840 57646 61096 3013 66291 73437 83126 67768 92979 69169 9389 70447 17151 74737 33407 3128 78504 52736 45853 27090 64395 24808 83577 24168 38576 37445 71022 40066 34908 90579 58370 31436 69812 39811 83370 50254 6518 72740 79316 67247 22759 65630 564...

output:

0.00

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #9:

score: 0
Accepted
time: 181ms
memory: 30644kb

input:

100000 200000 75283 45047
38593 5224 81049 28255 11324 43744 51172 60916 67783 62336 96782 50029 48743 18780 32756 4774 32484 95733 17336 38046 98145 49655 68352 58308 21594 64540 11719 57827 30130 70076 95133 29886 93864 22677 28498 60413 44567 78935 64952 88954 85786 34019 75159 69192 15108 54645 ...

output:

6010044.50

result:

ok found '6010044.5000000', expected '6010044.5000000', error '0.0000000'

Test #10:

score: 0
Accepted
time: 192ms
memory: 30068kb

input:

100000 200000 50293 63302
78731 76313 68601 46867 82806 57914 88495 43602 96202 44956 6593 96560 38650 61918 69911 48730 38668 8874 44449 25084 68496 18095 74789 52252 36631 68127 37908 63134 61923 68030 83186 81174 68083 78584 33622 74426 34099 32484 80162 10371 55894 65989 6374 76587 87442 50870 3...

output:

1926329544.00

result:

ok found '1926329544.0000000', expected '1926329544.0000000', error '0.0000000'

Test #11:

score: 0
Accepted
time: 179ms
memory: 30596kb

input:

100000 200000 81105 2350
9856 14867 98102 45742 76449 20173 90566 85519 8273 40573 98784 21094 38040 75579 21248 37555 32846 95358 92476 76093 99209 81806 76912 80248 93022 87883 85938 20897 20561 19811 59752 42986 36831 82149 73443 66562 96573 52522 68268 28832 46601 39663 61155 69950 13823 36697 9...

output:

1746699958.00

result:

ok found '1746699958.0000000', expected '1746699958.0000000', error '0.0000000'

Test #12:

score: 0
Accepted
time: 104ms
memory: 20292kb

input:

100000 99999 27499 37224
50619 546 34928 55892 95127 83241 56167 1411 64361 65091 69529 50805 18412 47138 24827 35822 53959 16642 73725 69209 23403 82125 61003 92477 62663 85774 63819 6812 16133 1840 57576 82545 80082 56754 8563 84660 57303 4822 32294 74865 59555 75395 7723 97981 7648 7614 39995 373...

output:

1479019958.00

result:

ok found '1479019958.0000000', expected '1479019958.0000000', error '0.0000000'

Test #13:

score: 0
Accepted
time: 71ms
memory: 23248kb

input:

100000 99999 57731 17782
55279 41436 80902 80600 52243 45703 2077 49134 70618 42937 43184 28403 94643 67960 79090 32887 25781 5974 92239 19915 75711 29995 69433 77210 10715 1476 69243 17422 48392 62130 70202 86152 46473 68342 55024 12135 59955 12466 35433 70410 30778 17201 73299 49206 22581 40598 68...

output:

0.00

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #14:

score: 0
Accepted
time: 87ms
memory: 23756kb

input:

100000 99999 73910 93392
4580 92394 65741 34067 1188 10312 33818 93538 87742 1111 15249 59319 21489 41536 67159 80368 70337 71510 11825 37146 18247 31165 85234 45308 15731 10225 14274 82315 1863 67625 34018 45831 689 40731 74176 34334 70252 97644 93344 19553 54498 92189 83921 76131 84274 23497 64458...

output:

3378244.00

result:

ok found '3378244.0000000', expected '3378244.0000000', error '0.0000000'

Test #15:

score: 0
Accepted
time: 0ms
memory: 3968kb

input:

100 183 81 44
0 0 0 4 8 4 0 0 0 0 4 4 4 4 0 4 4 0 4 0 4 0 0 6 4 0 0 0 4 4 4 4 4 4 0 0 0 5 0 2 4 0 0 6 4 6 4 4 0 4 4 4 0 4 0 4 0 4 0 0 0 7 0 0 0 0 4 4 4 4 0 0 4 0 0 4 0 4 0 0 0 0 0 0 4 0 4 0 4 4 0 0 3 0 1 1 0 0 7 4
66 97
46 99
7 64
87 90
3 66
25 64
64 68
64 72
67 87
26 66
5 62
52 87
8 64
33 87
73 87
...

output:

13.50

result:

ok found '13.5000000', expected '13.5000000', error '0.0000000'

Test #16:

score: 0
Accepted
time: 79ms
memory: 19964kb

input:

100000 99999 64074 96505
87418 33380 56655 42173 14145 36884 88525 91703 32550 41412 10624 35541 75270 87482 89617 49204 95521 36870 23040 19122 45883 72176 77268 60938 43360 31393 41224 5541 1555 72954 17703 34387 76958 86889 81999 93835 41791 94592 31395 60191 63924 80563 97171 64312 35003 41389 6...

output:

166359263584683.50

result:

ok found '166359263584683.5000000', expected '166359263584683.5000000', error '0.0000000'

Test #17:

score: 0
Accepted
time: 87ms
memory: 21400kb

input:

100000 99999 88380 67661
73690 45219 23449 94 36824 93501 71010 86368 12960 94218 79374 95892 28750 18934 24272 69473 9900 12603 76711 12755 80707 72244 39071 57774 90780 82096 97084 71883 89596 59808 88278 82572 33044 75860 35253 93116 15659 95455 70702 58215 21854 94912 31241 12700 62422 56855 167...

output:

83071594558471.00

result:

ok found '83071594558471.0000000', expected '83071594558471.0000000', error '0.0000000'

Test #18:

score: 0
Accepted
time: 101ms
memory: 20388kb

input:

100000 100010 64126 38643
55943 69335 62259 29792 75712 5556 66520 71232 17214 8175 83946 21298 2748 4606 52410 11773 88159 62700 71479 43982 12643 86187 61874 74905 58717 90378 49384 37111 50036 93032 15096 88591 28024 68493 4935 18502 20192 38935 75642 11949 42940 67063 10549 86100 77272 3831 2401...

output:

3598368952.50

result:

ok found '3598368952.5000000', expected '3598368952.5000000', error '0.0000000'

Test #19:

score: 0
Accepted
time: 70ms
memory: 23308kb

input:

100000 100010 76009 97186
92478 22197 4787 98363 97387 34621 82159 6166 34590 80362 82719 69113 42086 15870 34844 95143 37657 64828 33035 41403 937 46399 28187 30272 90708 68051 73149 99073 98655 84502 15748 81590 166 11703 86628 27221 94411 44507 66470 58358 66499 12649 91802 70136 68925 58126 2209...

output:

0.00

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #20:

score: 0
Accepted
time: 93ms
memory: 23192kb

input:

100000 100010 17565 75183
2273 78296 41453 33152 40043 38312 4482 40321 32077 43836 79290 22567 85829 62629 83177 57330 43660 29449 9553 25787 19436 32715 90543 8988 77271 41663 2450 21861 56185 9660 22831 13107 80512 22338 38799 25051 62528 8598 91751 63576 84408 69306 55096 44440 21176 36761 73983...

output:

294534244.00

result:

ok found '294534244.0000000', expected '294534244.0000000', error '0.0000000'

Test #21:

score: 0
Accepted
time: 89ms
memory: 20176kb

input:

100000 100010 79088 29655
10111 23706 69968 13551 93385 18770 63341 62081 61633 65278 1436 30430 71492 70993 30596 14011 78568 51878 12631 2768 13498 69712 39399 48840 49365 98922 25339 11166 20739 42619 9085 12674 37395 95923 47257 37924 2590 4428 99287 82141 93786 73432 76078 52325 37752 66326 886...

output:

58683899623619.50

result:

ok found '58683899623619.5000000', expected '58683899623619.5000000', error '0.0000000'

Test #22:

score: 0
Accepted
time: 79ms
memory: 21584kb

input:

100000 100010 79582 20455
59680 66730 69257 77941 60879 68783 89871 35627 54218 35986 9034 5093 49186 66859 94761 78455 26776 63541 34642 25062 81905 86274 8849 20638 19560 51606 12528 25893 48494 49864 59694 35348 16927 45638 91177 70508 5233 71907 8047 6743 34522 70833 12333 88858 91636 57623 3920...

output:

10053363692537.00

result:

ok found '10053363692537.0000000', expected '10053363692537.0000000', error '0.0000000'

Test #23:

score: 0
Accepted
time: 114ms
memory: 21824kb

input:

83109 122412 13645 76100
9 5 99996 7 8 1 99993 99996 8 2 100000 6 99996 8 99996 99994 7 99996 99990 9 99994 99990 99996 100000 7 7 8 4 99999 99999 99992 7 7 99997 6 7 99997 2 99995 99998 7 99996 9 8 4 99998 99997 10 99998 99997 99996 99993 7 99995 99993 99996 99995 99996 4 7 4 0 99996 99994 4 99995 ...

output:

136.00

result:

ok found '136.0000000', expected '136.0000000', error '0.0000000'

Test #24:

score: 0
Accepted
time: 164ms
memory: 29040kb

input:

89553 196251 12873 48091
9 99997 99994 99999 2 2 99999 0 10 9 10 99996 99997 2 99998 99996 99997 9 99994 99992 5 99998 99990 9 99995 99993 8 99991 5 99992 5 8 99995 99998 99997 2 10 9 1 99991 99994 8 99995 6 99994 99992 99999 99997 99995 99994 99997 10 99990 100000 1 99996 99998 99997 3 99994 99994 ...

output:

0.00

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #25:

score: 0
Accepted
time: 104ms
memory: 23224kb

input:

78397 122757 17055 17709
99996 99996 99998 8 99990 100000 2 99991 3 99995 99999 6 2 99998 5 99997 99998 99990 99999 99994 9 10 99997 5 99998 3 0 7 99994 1 4 99996 8 99999 5 3 10 4 5 4 3 7 99995 9 2 9 7 6 99994 99995 3 0 7 99993 99999 99995 0 99991 100000 99999 10 99993 1 99996 5 99998 5 99997 99996 ...

output:

1.00

result:

ok found '1.0000000', expected '1.0000000', error '0.0000000'

Test #26:

score: 0
Accepted
time: 90ms
memory: 19984kb

input:

100000 99999 68334 56498
100000 100000 0 0 0 0 100000 100000 100000 0 100000 100000 100000 100000 0 100000 0 0 0 100000 100000 100000 0 0 0 0 100000 100000 0 0 100000 100000 0 100000 100000 0 100000 0 0 0 100000 100000 0 100000 0 100000 100000 0 100000 0 0 0 100000 100000 0 100000 100000 0 100000 0 ...

output:

999970000000000.00

result:

ok found '999970000000000.0000000', expected '999970000000000.0000000', error '0.0000000'

Test #27:

score: 0
Accepted
time: 128ms
memory: 24516kb

input:

63927 177863 47793 17216
9 2 2 3 10 10 9 2 99995 0 10 99991 99997 99991 99990 99992 0 9 4 3 3 7 2 99999 99996 99990 99991 99997 99999 99995 3 99999 99991 99996 99993 3 0 99999 99994 99992 1 2 99995 10 5 99990 99990 2 10 99990 1 99992 9 10 99999 9 5 99997 99999 6 1 99990 99996 0 0 99997 99990 99990 9...

output:

61.00

result:

ok found '61.0000000', expected '61.0000000', error '0.0000000'

Test #28:

score: 0
Accepted
time: 158ms
memory: 26328kb

input:

94185 169435 45348 73894
100000 3 99992 6 7 99998 9 99997 99993 99995 99996 99999 1 4 7 10 99996 0 5 99996 99992 99993 99993 8 99999 8 99997 100000 6 99996 100000 99990 100000 8 99990 99997 99995 5 5 99995 99998 9 99996 100000 99991 99997 9 100000 3 99995 99991 4 99996 99999 1 8 100000 99995 7 10 99...

output:

4998000288.00

result:

ok found '4998000288.0000000', expected '4998000288.0000000', error '0.0000000'

Test #29:

score: 0
Accepted
time: 75ms
memory: 23320kb

input:

100000 99999 72799 93666
962 754 286 174 88 253 66 995 11 32 242 861 991 617 590 617 685 227 954 917 885 363 522 371 744 519 538 880 610 35 240 775 268 115 110 45 983 251 444 39 772 345 660 735 234 200 583 640 273 262 998 593 712 869 832 638 948 846 902 183 383 565 713 789 284 746 806 879 817 130 81...

output:

0.00

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #30:

score: 0
Accepted
time: 189ms
memory: 30540kb

input:

100000 200000 16773 2984
321 839 485 567 17 714 314 307 903 509 140 42 173 654 550 279 346 850 612 715 719 247 173 409 622 185 137 366 918 887 434 507 873 457 349 553 878 275 278 271 819 225 273 576 697 874 659 697 396 182 419 199 485 498 631 143 821 137 635 838 852 955 933 209 857 10 534 983 179 70...

output:

7056.00

result:

ok found '7056.0000000', expected '7056.0000000', error '0.0000000'

Test #31:

score: 0
Accepted
time: 80ms
memory: 23424kb

input:

100000 99999 90345 42775
447 495 708 606 668 221 382 886 768 506 678 553 384 348 806 509 876 241 766 151 103 980 245 326 937 425 966 432 671 500 560 12 567 812 122 536 368 650 60 664 434 137 367 987 565 966 601 766 770 892 957 179 174 933 256 690 775 183 947 808 814 681 75 275 36 350 269 983 432 867...

output:

0.00

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #32:

score: 0
Accepted
time: 184ms
memory: 31032kb

input:

100000 200000 22643 13191
433 626 806 235 33 889 524 14 933 609 477 594 754 608 563 736 115 972 873 143 717 262 751 21 1 311 384 844 280 242 645 283 51 480 500 879 186 792 719 974 820 437 993 867 847 701 660 497 200 234 470 107 359 562 265 121 285 396 524 987 901 83 82 437 151 211 87 419 976 422 555...

output:

121.50

result:

ok found '121.5000000', expected '121.5000000', error '0.0000000'

Test #33:

score: 0
Accepted
time: 77ms
memory: 23756kb

input:

100000 99999 54697 24800
684 207 414 408 750 843 153 69 781 566 754 275 785 915 806 565 29 870 228 560 98 87 824 599 598 906 830 133 364 752 857 532 674 334 292 903 582 137 328 595 385 722 35 278 846 889 512 184 239 665 307 729 831 764 923 196 94 569 627 519 120 411 45 915 431 296 337 38 520 67 545 ...

output:

0.00

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #34:

score: -100
Wrong Answer
time: 177ms
memory: 30560kb

input:

100000 200000 908 79920
722 99 511 428 260 295 176 886 953 932 880 935 345 745 898 964 486 684 623 53 889 846 664 453 114 504 731 545 207 783 352 533 562 361 438 798 373 950 344 878 912 868 340 716 345 555 100 322 456 803 541 846 211 668 949 167 934 49 257 960 6 765 902 319 992 121 801 645 404 81 40...

output:

116033.00

result:

wrong answer 1st numbers differ - expected: '14921.5000000', found: '116033.0000000', error = '6.7762289'