QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#183411#5375. SearchLynkcat50 924ms103008kbC++204.8kb2023-09-19 14:54:322023-09-19 14:54:32

Judging History

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

  • [2023-09-19 14:54:32]
  • 评测
  • 测评结果:50
  • 用时:924ms
  • 内存:103008kb
  • [2023-09-19 14:54:32]
  • 提交

answer

#include <bits/stdc++.h>
#include "search.h"
#define poly vector<int>
#define IOS ios::sync_with_stdio(false)
#define ll long long
#define mp make_pair
#define mt make_tuple
#define pa pair < int,int >
#define fi first
#define se second
#define inf 1e18
#define mod 998244353
#define sz(x) ((int)((x).size()))
// #define int ll

using namespace std;

namespace query 
{
    const int N=2005;
    int f[N][N];
    int n;
    int t1,t2;
    int bnd[N],pos[N];
    int mx,my;

    mt19937_64 rnd(time(0));
    map<pair<pa,pa>,string>Mp;
    map<pa,string>Mp1;
    string query1(int x,int y,int a,int b)
    {
        if (x<=a&&y<=b) return "<";
        if (Mp.count(mp(mp(x,y),mp(a,b)))) return Mp[mp(mp(x,y),mp(a,b))];
        t1++;
        string res=ask1(x,y,a,b);
        Mp[mp(mp(x,y),mp(a,b))]=res;
        if (res=="<") Mp[mp(mp(a,b),mp(x,y))]=">";
        else Mp[mp(mp(a,b),mp(x,y))]="<";
        return res;
    }
    string query2(int x,int y)
    {
        if (Mp1.count(mp(x,y))) return Mp1[mp(x,y)];
        t2++;
        string res=ask2(x,y);
        Mp1[mp(x,y)]=res;
        return res;
    }
    void geta(int k,int x,int y)
    {
        if (!x) return;
        int l=pos[k]+1,r=bnd[k];
        while (l<=r)
        {
            int mid=l+(r-l)/2;
            mid=l;
            if (query1(mid,k,x,y)=="<")
            {
                pos[k]=mid;
                l=mid+1;
            } else r=mid-1;
        }
    }
    void getb(int k,int x,int y)
    {
        int l=pos[k]+1,r=bnd[k];
        while (l<=r)
        {
            int mid=l+(r-l)/2;
            mid=r;
            if (query1(mid,k,x,y)=="<")
            {
                l=mid+1;
            } else
            {
                bnd[k]=mid-1;
                r=mid-1;
            }
        }
    }
    inline int calc(int x,int y)
    {
        return max((f[x][y]-1),(f[n][n]-f[x-1][n]-f[n][y-1]+f[x-1][y-1]-1));
    }
    int solve()
    {
        bool bl=1;
        for (int i=1;i<=n;i++)
            if (pos[i]==bnd[i]) bl&=1;
            else bl=0;
        int tot=0;
        poly g;
        for (int i=1;i<=n;i++)
        {
            tot+=bnd[i]-pos[i];
            if (bnd[i]!=pos[i]) g.push_back(i);
        }
        if (bl) return 1;
        // cout<<tot<<" "<<::c2<<endl;
        int sm=tot;
        int od=rnd()%sm;
        sm=0;
        int cx=0,cy=0;
        for (int i=1;i<=n;i++)
        {
            for (int j=1;j<=n;j++)
            {
                f[i][j]=0;
            }
        }
        for (int j=1;j<=n;j++)
            for (int i=pos[j]+1;i<=bnd[j];i++) f[i][j]=1;
        for (int i=1;i<=n;i++)
            for (int j=1;j<=n;j++)
                f[i][j]+=f[i-1][j]+f[i][j-1]-f[i-1][j-1];
        int Tot=0;
        vector<pa>all;
        if (t1+1ll*tot*(tot-1)/2>120000)
        {
            for (int j=1;j<=n;j++)
                for (int i=pos[j]+1;i<=bnd[j];i++) 
                    if (calc(i,j)*2<=tot) all.push_back(mp(i,j));
            int ooo=rnd()%all.size();
            cx=all[ooo].fi,cy=all[ooo].se;
        } else
        {
            for (int j=1;j<=n;j++)
                for (int i=pos[j]+1;i<=bnd[j];i++) 
                    all.push_back(mp(i,j));
            sort(all.begin(),all.end(),[&](pa x,pa y)
            {
                return query1(x.fi,x.se,y.fi,y.se)=="<";
            });
            int ooo=all.size()/2;
            cx=all[ooo].fi,cy=all[ooo].se;
        }
        // if (tot>0)
        // {
        //     for (auto u:g)
        //     {
        //         sm+=bnd[u]-pos[u];
        //         if (od<sm)
        //         {
        //             cx=bnd[u]-(sm-od)+1;
        //             cy=u;
        //             break;
        //         }
        //     }
        // }
        if (query2(cx,cy)=="<")
        {
            pos[cy]=cx;
            for (int i=n;i>=1;i--)
                {
                    if (i<n)
                        pos[i]=max(pos[i],pos[i+1]);
                    if (i!=cy)
                        geta(i,cx,cy);
                }
        } else
        {
            bnd[cy]=cx-1;
            for (int i=1;i<=n;i++)
                {
                    if (i>1)
                        bnd[i]=min(bnd[i],bnd[i-1]);
                    if (i!=cy)
                        getb(i,cx,cy);
                }
        }
        return 0;
    }

    int main(int nn) 
    {
        n=nn;
        mx=n,my=n;
        if (query2(n,n)=="<")
        {
            return n*n;
        }
        poly g;
        for (int i=1;i<=n;i++)
            g.push_back(i),bnd[i]=n;
        while (!solve());
        int ans=0;
        for (int i=1;i<=n;i++) ans+=pos[i];
        return ans;
    }
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 10
Accepted

Test #1:

score: 10
Accepted
time: 1ms
memory: 5984kb

input:

6 3
384 45
837639677

output:

1 122 6

result:

points 1.0 correct, ask1 called 122 time(s), ask2 called 6 time(s)

Test #2:

score: 10
Accepted
time: 1ms
memory: 6024kb

input:

8 59
512 45
439876779

output:

1 315 7

result:

points 1.0 correct, ask1 called 315 time(s), ask2 called 7 time(s)

Test #3:

score: 10
Accepted
time: 0ms
memory: 6036kb

input:

9 27
576 45
777817090

output:

1 417 7

result:

points 1.0 correct, ask1 called 417 time(s), ask2 called 7 time(s)

Test #4:

score: 10
Accepted
time: 1ms
memory: 6000kb

input:

7 14
448 45
42081112

output:

1 177 7

result:

points 1.0 correct, ask1 called 177 time(s), ask2 called 7 time(s)

Test #5:

score: 10
Accepted
time: 1ms
memory: 6232kb

input:

6 14
384 45
380054191

output:

1 121 7

result:

points 1.0 correct, ask1 called 121 time(s), ask2 called 7 time(s)

Test #6:

score: 10
Accepted
time: 1ms
memory: 6040kb

input:

9 13
576 45
718060038

output:

1 417 8

result:

points 1.0 correct, ask1 called 417 time(s), ask2 called 8 time(s)

Test #7:

score: 10
Accepted
time: 1ms
memory: 6304kb

input:

9 16
576 45
1056065885

output:

1 423 7

result:

points 1.0 correct, ask1 called 423 time(s), ask2 called 7 time(s)

Test #8:

score: 10
Accepted
time: 0ms
memory: 6052kb

input:

7 41
448 45
320297139

output:

1 182 7

result:

points 1.0 correct, ask1 called 182 time(s), ask2 called 7 time(s)

Test #9:

score: 10
Accepted
time: 1ms
memory: 6272kb

input:

7 33
448 45
658302986

output:

1 175 7

result:

points 1.0 correct, ask1 called 175 time(s), ask2 called 7 time(s)

Test #10:

score: 10
Accepted
time: 1ms
memory: 6004kb

input:

7 30
448 45
996276065

output:

1 208 6

result:

points 1.0 correct, ask1 called 208 time(s), ask2 called 6 time(s)

Test #11:

score: 10
Accepted
time: 0ms
memory: 5956kb

input:

7 37
448 45
598480398

output:

1 170 6

result:

points 1.0 correct, ask1 called 170 time(s), ask2 called 6 time(s)

Test #12:

score: 10
Accepted
time: 1ms
memory: 6368kb

input:

10 27
640 45
936486245

output:

1 591 8

result:

points 1.0 correct, ask1 called 591 time(s), ask2 called 8 time(s)

Test #13:

score: 10
Accepted
time: 0ms
memory: 6008kb

input:

8 22
512 45
200750268

output:

1 302 7

result:

points 1.0 correct, ask1 called 302 time(s), ask2 called 7 time(s)

Test #14:

score: 10
Accepted
time: 0ms
memory: 5988kb

input:

10 41
640 45
538723346

output:

1 548 7

result:

points 1.0 correct, ask1 called 548 time(s), ask2 called 7 time(s)

Test #15:

score: 10
Accepted
time: 1ms
memory: 6272kb

input:

6 35
384 45
876729193

output:

1 144 7

result:

points 1.0 correct, ask1 called 144 time(s), ask2 called 7 time(s)

Test #16:

score: 10
Accepted
time: 0ms
memory: 6364kb

input:

10 98
640 45
140960448

output:

1 557 8

result:

points 1.0 correct, ask1 called 557 time(s), ask2 called 8 time(s)

Test #17:

score: 10
Accepted
time: 1ms
memory: 6072kb

input:

8 36
512 45
478966295

output:

1 304 7

result:

points 1.0 correct, ask1 called 304 time(s), ask2 called 7 time(s)

Test #18:

score: 10
Accepted
time: 1ms
memory: 6328kb

input:

8 9
512 45
81170628

output:

1 314 7

result:

points 1.0 correct, ask1 called 314 time(s), ask2 called 7 time(s)

Test #19:

score: 10
Accepted
time: 1ms
memory: 5980kb

input:

6 20
384 45
419176475

output:

1 138 6

result:

points 1.0 correct, ask1 called 138 time(s), ask2 called 6 time(s)

Test #20:

score: 10
Accepted
time: 1ms
memory: 6240kb

input:

6 23
384 45
757149553

output:

1 145 6

result:

points 1.0 correct, ask1 called 145 time(s), ask2 called 6 time(s)

Subtask #2:

score: 40
Acceptable Answer

Test #21:

score: 90
Accepted
time: 723ms
memory: 100464kb

input:

1998 997469
511488 45
691176210

output:

1 34724 25

result:

points 1.0 correct, ask1 called 34724 time(s), ask2 called 25 time(s)

Test #22:

score: 90
Accepted
time: 822ms
memory: 100584kb

input:

1997 250682
511232 45
1029182057

output:

1 43125 28

result:

points 1.0 correct, ask1 called 43125 time(s), ask2 called 28 time(s)

Test #23:

score: 90
Accepted
time: 867ms
memory: 100456kb

input:

2000 1742216
512000 45
293413312

output:

1 45981 31

result:

points 1.0 correct, ask1 called 45981 time(s), ask2 called 31 time(s)

Test #24:

score: 90
Accepted
time: 724ms
memory: 101088kb

input:

1996 2394420
510976 45
631419158

output:

1 31233 28

result:

points 1.0 correct, ask1 called 31233 time(s), ask2 called 28 time(s)

Test #25:

score: 90
Accepted
time: 748ms
memory: 101900kb

input:

1998 3398507
511488 45
969425005

output:

1 30898 25

result:

points 1.0 correct, ask1 called 30898 time(s), ask2 called 25 time(s)

Test #26:

score: 90
Accepted
time: 769ms
memory: 101148kb

input:

1998 574252
511488 45
571662106

output:

1 39824 29

result:

points 1.0 correct, ask1 called 39824 time(s), ask2 called 29 time(s)

Test #27:

score: 90
Accepted
time: 700ms
memory: 100104kb

input:

1996 1162097
510976 45
909635185

output:

1 31443 29

result:

points 1.0 correct, ask1 called 31443 time(s), ask2 called 29 time(s)

Test #28:

score: 90
Accepted
time: 646ms
memory: 100740kb

input:

1999 1287929
511744 45
173899208

output:

1 25795 24

result:

points 1.0 correct, ask1 called 25795 time(s), ask2 called 24 time(s)

Test #29:

score: 90
Accepted
time: 640ms
memory: 101012kb

input:

1996 513076
510976 45
511839519

output:

1 25965 21

result:

points 1.0 correct, ask1 called 25965 time(s), ask2 called 21 time(s)

Test #30:

score: 90
Accepted
time: 823ms
memory: 102224kb

input:

1999 2359752
511744 45
849845365

output:

1 36364 29

result:

points 1.0 correct, ask1 called 36364 time(s), ask2 called 29 time(s)

Test #31:

score: 90
Accepted
time: 678ms
memory: 100732kb

input:

1996 1905307
510976 45
114109388

output:

1 32233 24

result:

points 1.0 correct, ask1 called 32233 time(s), ask2 called 24 time(s)

Test #32:

score: 90
Accepted
time: 680ms
memory: 100196kb

input:

1999 3464342
511744 45
452082467

output:

1 28032 22

result:

points 1.0 correct, ask1 called 28032 time(s), ask2 called 22 time(s)

Test #33:

score: 90
Accepted
time: 753ms
memory: 99932kb

input:

1997 3041161
511232 45
790088314

output:

1 30091 28

result:

points 1.0 correct, ask1 called 30091 time(s), ask2 called 28 time(s)

Test #34:

score: 90
Accepted
time: 748ms
memory: 100160kb

input:

1999 605699
511744 45
54319568

output:

1 37861 28

result:

points 1.0 correct, ask1 called 37861 time(s), ask2 called 28 time(s)

Test #35:

score: 90
Accepted
time: 782ms
memory: 100660kb

input:

2000 3411048
512000 45
392325415

output:

1 38053 29

result:

points 1.0 correct, ask1 called 38053 time(s), ask2 called 29 time(s)

Test #36:

score: 90
Accepted
time: 760ms
memory: 99648kb

input:

1999 1677521
511744 45
730331262

output:

1 40443 26

result:

points 1.0 correct, ask1 called 40443 time(s), ask2 called 26 time(s)

Test #37:

score: 65
Acceptable Answer
time: 816ms
memory: 99688kb

input:

1997 1645949
511232 45
1068271572

output:

1 39597 35

result:

points 0.72222222220 correct, ask1 called 39597 time(s), ask2 called 35 time(s)

Test #38:

score: 90
Accepted
time: 744ms
memory: 100728kb

input:

2000 1395508
512000 45
670508674

output:

1 35424 26

result:

points 1.0 correct, ask1 called 35424 time(s), ask2 called 26 time(s)

Test #39:

score: 90
Accepted
time: 808ms
memory: 101100kb

input:

2000 1045422
512000 45
1008514521

output:

1 42439 33

result:

points 1.0 correct, ask1 called 42439 time(s), ask2 called 33 time(s)

Test #40:

score: 90
Accepted
time: 662ms
memory: 99776kb

input:

2000 2404123
512000 45
272745775

output:

1 24058 25

result:

points 1.0 correct, ask1 called 24058 time(s), ask2 called 25 time(s)

Test #41:

score: 90
Accepted
time: 765ms
memory: 100924kb

input:

1998 2301912
511488 45
610751622

output:

1 37506 28

result:

points 1.0 correct, ask1 called 37506 time(s), ask2 called 28 time(s)

Test #42:

score: 65
Acceptable Answer
time: 919ms
memory: 99400kb

input:

2000 3412738
512000 45
948757469

output:

1 56581 36

result:

points 0.72222222220 correct, ask1 called 56581 time(s), ask2 called 36 time(s)

Test #43:

score: 90
Accepted
time: 841ms
memory: 101528kb

input:

1998 3469663
511488 45
212988724

output:

1 45188 32

result:

points 1.0 correct, ask1 called 45188 time(s), ask2 called 32 time(s)

Test #44:

score: 90
Accepted
time: 798ms
memory: 102712kb

input:

1996 3617351
510976 45
550961802

output:

1 41669 27

result:

points 1.0 correct, ask1 called 41669 time(s), ask2 called 27 time(s)

Test #45:

score: 90
Accepted
time: 675ms
memory: 99912kb

input:

1998 710945
511488 45
888934881

output:

1 31048 22

result:

points 1.0 correct, ask1 called 31048 time(s), ask2 called 22 time(s)

Test #46:

score: 90
Accepted
time: 699ms
memory: 99648kb

input:

1999 2333740
511744 45
153198904

output:

1 26693 28

result:

points 1.0 correct, ask1 called 26693 time(s), ask2 called 28 time(s)

Test #47:

score: 90
Accepted
time: 784ms
memory: 100404kb

input:

1998 1878695
511488 45
491171982

output:

1 41698 28

result:

points 1.0 correct, ask1 called 41698 time(s), ask2 called 28 time(s)

Test #48:

score: 90
Accepted
time: 836ms
memory: 101192kb

input:

1997 3590574
511232 45
93441852

output:

1 39310 28

result:

points 1.0 correct, ask1 called 39310 time(s), ask2 called 28 time(s)

Test #49:

score: 90
Accepted
time: 713ms
memory: 101668kb

input:

1996 1801543
510976 45
431414931

output:

1 33301 24

result:

points 1.0 correct, ask1 called 33301 time(s), ask2 called 24 time(s)

Test #50:

score: 90
Accepted
time: 640ms
memory: 101028kb

input:

1999 3672188
511744 45
769420777

output:

1 21531 21

result:

points 1.0 correct, ask1 called 21531 time(s), ask2 called 21 time(s)

Test #51:

score: 90
Accepted
time: 750ms
memory: 100508kb

input:

1997 1535960
383424 38
726700757

output:

1 41471 30

result:

points 1.0 correct, ask1 called 41471 time(s), ask2 called 30 time(s)

Test #52:

score: 90
Accepted
time: 851ms
memory: 102648kb

input:

1999 3382611
383808 38
1064673836

output:

1 38506 27

result:

points 1.0 correct, ask1 called 38506 time(s), ask2 called 27 time(s)

Test #53:

score: 90
Accepted
time: 721ms
memory: 100572kb

input:

1999 2544646
383808 38
328937859

output:

1 31118 24

result:

points 1.0 correct, ask1 called 31118 time(s), ask2 called 24 time(s)

Test #54:

score: 90
Accepted
time: 811ms
memory: 100856kb

input:

2000 3759384
384000 38
666910937

output:

1 43420 34

result:

points 1.0 correct, ask1 called 43420 time(s), ask2 called 34 time(s)

Test #55:

score: 65
Acceptable Answer
time: 842ms
memory: 101104kb

input:

2000 767997
384000 38
269148039

output:

1 46156 36

result:

points 0.72222222220 correct, ask1 called 46156 time(s), ask2 called 36 time(s)

Test #56:

score: 90
Accepted
time: 686ms
memory: 100300kb

input:

1997 1437146
383424 38
607153886

output:

1 29928 27

result:

points 1.0 correct, ask1 called 29928 time(s), ask2 called 27 time(s)

Test #57:

score: 90
Accepted
time: 701ms
memory: 101148kb

input:

2000 1776612
384000 38
945159732

output:

1 30867 24

result:

points 1.0 correct, ask1 called 30867 time(s), ask2 called 24 time(s)

Test #58:

score: 90
Accepted
time: 691ms
memory: 100832kb

input:

1998 2265321
383616 38
209358219

output:

1 26646 25

result:

points 1.0 correct, ask1 called 26646 time(s), ask2 called 25 time(s)

Test #59:

score: 65
Acceptable Answer
time: 838ms
memory: 100552kb

input:

1997 1854922
383424 38
547364066

output:

1 43092 35

result:

points 0.72222222220 correct, ask1 called 43092 time(s), ask2 called 35 time(s)

Test #60:

score: 90
Accepted
time: 784ms
memory: 100336kb

input:

1998 3465840
383616 38
885337145

output:

1 37559 28

result:

points 1.0 correct, ask1 called 37559 time(s), ask2 called 28 time(s)

Test #61:

score: 90
Accepted
time: 838ms
memory: 100984kb

input:

2000 2052285
384000 38
149601167

output:

1 42701 29

result:

points 1.0 correct, ask1 called 42701 time(s), ask2 called 29 time(s)

Test #62:

score: 90
Accepted
time: 722ms
memory: 100600kb

input:

1998 674354
383616 38
487574246

output:

1 30101 25

result:

points 1.0 correct, ask1 called 30101 time(s), ask2 called 25 time(s)

Test #63:

score: 90
Accepted
time: 698ms
memory: 101208kb

input:

1996 3620340
383232 38
825580093

output:

1 33490 27

result:

points 1.0 correct, ask1 called 33490 time(s), ask2 called 27 time(s)

Test #64:

score: 90
Accepted
time: 628ms
memory: 101272kb

input:

1998 1874872
383616 38
89844115

output:

1 25357 20

result:

points 1.0 correct, ask1 called 25357 time(s), ask2 called 20 time(s)

Test #65:

score: 90
Accepted
time: 776ms
memory: 100628kb

input:

1996 995786
383232 38
427817194

output:

1 33364 26

result:

points 1.0 correct, ask1 called 33364 time(s), ask2 called 26 time(s)

Test #66:

score: 90
Accepted
time: 708ms
memory: 101124kb

input:

1996 2420784
383232 38
30021528

output:

1 33319 25

result:

points 1.0 correct, ask1 called 33319 time(s), ask2 called 25 time(s)

Test #67:

score: 90
Accepted
time: 812ms
memory: 101360kb

input:

1999 3356599
383808 38
368027374

output:

1 42538 28

result:

points 1.0 correct, ask1 called 42538 time(s), ask2 called 28 time(s)

Test #68:

score: 90
Accepted
time: 661ms
memory: 100260kb

input:

1999 2485867
383808 38
706033221

output:

1 29156 25

result:

points 1.0 correct, ask1 called 29156 time(s), ask2 called 25 time(s)

Test #69:

score: 65
Acceptable Answer
time: 924ms
memory: 102836kb

input:

1997 2470380
383424 38
1044006300

output:

1 56860 36

result:

points 0.72222222220 correct, ask1 called 56860 time(s), ask2 called 36 time(s)

Test #70:

score: 90
Accepted
time: 781ms
memory: 100108kb

input:

1996 1188460
383232 38
308270323

output:

1 39829 27

result:

points 1.0 correct, ask1 called 39829 time(s), ask2 called 27 time(s)

Test #71:

score: 90
Accepted
time: 710ms
memory: 100772kb

input:

1997 2799645
383424 38
646243401

output:

1 35154 28

result:

points 1.0 correct, ask1 called 35154 time(s), ask2 called 28 time(s)

Test #72:

score: 90
Accepted
time: 746ms
memory: 100164kb

input:

1999 699046
383808 38
984249248

output:

1 33286 31

result:

points 1.0 correct, ask1 called 33286 time(s), ask2 called 31 time(s)

Test #73:

score: 90
Accepted
time: 684ms
memory: 100808kb

input:

1999 3857083
383808 38
248447735

output:

1 32460 26

result:

points 1.0 correct, ask1 called 32460 time(s), ask2 called 26 time(s)

Test #74:

score: 90
Accepted
time: 765ms
memory: 100792kb

input:

2000 1079818
384000 38
586453581

output:

1 34026 30

result:

points 1.0 correct, ask1 called 34026 time(s), ask2 called 30 time(s)

Test #75:

score: 90
Accepted
time: 738ms
memory: 100912kb

input:

1997 1404432
383424 38
924459428

output:

1 35445 30

result:

points 1.0 correct, ask1 called 35445 time(s), ask2 called 30 time(s)

Test #76:

score: 90
Accepted
time: 881ms
memory: 103008kb

input:

1997 2700831
383424 38
526696530

output:

1 52988 34

result:

points 1.0 correct, ask1 called 52988 time(s), ask2 called 34 time(s)

Test #77:

score: 90
Accepted
time: 824ms
memory: 101620kb

input:

2000 3097047
384000 38
864669608

output:

1 48959 33

result:

points 1.0 correct, ask1 called 48959 time(s), ask2 called 33 time(s)

Test #78:

score: 90
Accepted
time: 744ms
memory: 101004kb

input:

1998 3569764
383616 38
128933631

output:

1 39025 28

result:

points 1.0 correct, ask1 called 39025 time(s), ask2 called 28 time(s)

Test #79:

score: 90
Accepted
time: 701ms
memory: 100216kb

input:

1998 2103877
383616 38
466906710

output:

1 31904 26

result:

points 1.0 correct, ask1 called 31904 time(s), ask2 called 26 time(s)

Test #80:

score: 90
Accepted
time: 861ms
memory: 99764kb

input:

1998 778278
383616 38
804912557

output:

1 40153 31

result:

points 1.0 correct, ask1 called 40153 time(s), ask2 called 31 time(s)

Test #81:

score: 90
Accepted
time: 758ms
memory: 100544kb

input:

2000 2961353
256000 36
853017067

output:

1 40952 28

result:

points 1.0 correct, ask1 called 40952 time(s), ask2 called 28 time(s)

Test #82:

score: 90
Accepted
time: 763ms
memory: 99880kb

input:

1996 2578498
255488 36
117281089

output:

1 34561 30

result:

points 1.0 correct, ask1 called 34561 time(s), ask2 called 30 time(s)

Test #83:

score: 90
Accepted
time: 816ms
memory: 101680kb

input:

1996 3937961
255488 36
793260015

output:

1 44530 27

result:

points 1.0 correct, ask1 called 44530 time(s), ask2 called 27 time(s)

Test #84:

score: 90
Accepted
time: 840ms
memory: 100984kb

input:

1998 2345897
255744 36
57491270

output:

1 49603 34

result:

points 1.0 correct, ask1 called 49603 time(s), ask2 called 34 time(s)

Test #85:

score: 90
Accepted
time: 723ms
memory: 100308kb

input:

1996 1378943
255488 36
395497116

output:

1 36601 29

result:

points 1.0 correct, ask1 called 36601 time(s), ask2 called 29 time(s)

Test #86:

score: 90
Accepted
time: 756ms
memory: 99892kb

input:

1999 2734233
255872 36
733502963

output:

1 31158 29

result:

points 1.0 correct, ask1 called 31158 time(s), ask2 called 29 time(s)

Test #87:

score: 90
Accepted
time: 770ms
memory: 101308kb

input:

1999 1863500
255872 36
1071476042

output:

1 36562 31

result:

points 1.0 correct, ask1 called 36562 time(s), ask2 called 31 time(s)

Test #88:

score: 90
Accepted
time: 786ms
memory: 101424kb

input:

1999 3838824
255872 36
335740064

output:

1 49382 33

result:

points 1.0 correct, ask1 called 49382 time(s), ask2 called 33 time(s)

Test #89:

score: 90
Accepted
time: 651ms
memory: 100532kb

input:

1996 146619
255488 36
673680375

output:

1 25758 22

result:

points 1.0 correct, ask1 called 25758 time(s), ask2 called 22 time(s)

Test #90:

score: 90
Accepted
time: 823ms
memory: 100580kb

input:

1997 2897460
255616 36
1011686222

output:

1 40614 28

result:

points 1.0 correct, ask1 called 40614 time(s), ask2 called 28 time(s)

Test #91:

score: 90
Accepted
time: 661ms
memory: 102232kb

input:

2000 3588803
256000 36
275917477

output:

1 22856 21

result:

points 1.0 correct, ask1 called 22856 time(s), ask2 called 21 time(s)

Test #92:

score: 90
Accepted
time: 651ms
memory: 100368kb

input:

1999 2052003
255872 36
613923323

output:

1 29651 24

result:

points 1.0 correct, ask1 called 29651 time(s), ask2 called 24 time(s)

Test #93:

score: 90
Accepted
time: 864ms
memory: 102604kb

input:

2000 597416
256000 36
951929170

output:

1 47328 31

result:

points 1.0 correct, ask1 called 47328 time(s), ask2 called 31 time(s)

Test #94:

score: 90
Accepted
time: 622ms
memory: 99796kb

input:

1997 502346
255616 36
216160425

output:

1 21933 23

result:

points 1.0 correct, ask1 called 21933 time(s), ask2 called 23 time(s)

Test #95:

score: 90
Accepted
time: 645ms
memory: 100324kb

input:

1998 1639752
255744 36
892139350

output:

1 27918 23

result:

points 1.0 correct, ask1 called 27918 time(s), ask2 called 23 time(s)

Test #96:

score: 40
Acceptable Answer
time: 917ms
memory: 100312kb

input:

2000 2614645
256000 36
156370605

output:

1 58866 38

result:

points 0.44444444440 correct, ask1 called 58866 time(s), ask2 called 38 time(s)

Test #97:

score: 90
Accepted
time: 819ms
memory: 101108kb

input:

1998 2807503
255744 36
494343684

output:

1 45819 28

result:

points 1.0 correct, ask1 called 45819 time(s), ask2 called 28 time(s)

Test #98:

score: 90
Accepted
time: 782ms
memory: 100580kb

input:

2000 3623260
256000 36
832349530

output:

1 36222 29

result:

points 1.0 correct, ask1 called 36222 time(s), ask2 called 29 time(s)

Test #99:

score: 90
Accepted
time: 746ms
memory: 101028kb

input:

1998 16016
255744 36
96613553

output:

1 39898 29

result:

points 1.0 correct, ask1 called 39898 time(s), ask2 called 29 time(s)

Test #100:

score: 90
Accepted
time: 673ms
memory: 100948kb

input:

1996 499201
255488 36
434586632

output:

1 25874 23

result:

points 1.0 correct, ask1 called 25874 time(s), ask2 called 23 time(s)

Test #101:

score: 90
Accepted
time: 818ms
memory: 101388kb

input:

1996 2183083
255488 36
772592479

output:

1 42984 28

result:

points 1.0 correct, ask1 called 42984 time(s), ask2 called 28 time(s)

Test #102:

score: 90
Accepted
time: 710ms
memory: 99772kb

input:

1996 1924199
255488 36
36823733

output:

1 26224 27

result:

points 1.0 correct, ask1 called 26224 time(s), ask2 called 27 time(s)

Test #103:

score: 90
Accepted
time: 763ms
memory: 101180kb

input:

1998 2417054
255744 36
374829580

output:

1 36311 30

result:

points 1.0 correct, ask1 called 36311 time(s), ask2 called 30 time(s)

Test #104:

score: 90
Accepted
time: 823ms
memory: 101660kb

input:

1999 966756
255872 36
712769891

output:

1 45607 29

result:

points 1.0 correct, ask1 called 45607 time(s), ask2 called 29 time(s)

Test #105:

score: 90
Accepted
time: 670ms
memory: 101308kb

input:

1997 271949
255616 36
1050775738

output:

1 29423 24

result:

points 1.0 correct, ask1 called 29423 time(s), ask2 called 24 time(s)

Test #106:

score: 90
Accepted
time: 728ms
memory: 101072kb

input:

1996 2634642
255488 36
315039760

output:

1 30095 24

result:

points 1.0 correct, ask1 called 30095 time(s), ask2 called 24 time(s)

Test #107:

score: 90
Accepted
time: 770ms
memory: 99876kb

input:

1997 1601116
255616 36
653012839

output:

1 42090 29

result:

points 1.0 correct, ask1 called 42090 time(s), ask2 called 29 time(s)

Test #108:

score: 90
Accepted
time: 708ms
memory: 101372kb

input:

1999 1155259
255872 36
255249940

output:

1 29808 25

result:

points 1.0 correct, ask1 called 29808 time(s), ask2 called 25 time(s)

Test #109:

score: 90
Accepted
time: 821ms
memory: 100972kb

input:

1999 284526
255872 36
593255787

output:

1 43645 29

result:

points 1.0 correct, ask1 called 43645 time(s), ask2 called 29 time(s)

Test #110:

score: 90
Accepted
time: 620ms
memory: 101328kb

input:

1997 173135
255616 36
931228866

output:

1 20270 22

result:

points 1.0 correct, ask1 called 20270 time(s), ask2 called 22 time(s)

Test #111:

score: 90
Accepted
time: 795ms
memory: 101008kb

input:

1996 2189413
127744 34
618447205

output:

1 35063 26

result:

points 1.0 correct, ask1 called 35063 time(s), ask2 called 26 time(s)

Test #112:

score: 90
Accepted
time: 751ms
memory: 102212kb

input:

1999 3781216
127936 34
956453051

output:

1 36222 26

result:

points 1.0 correct, ask1 called 36222 time(s), ask2 called 26 time(s)

Test #113:

score: 90
Accepted
time: 668ms
memory: 100956kb

input:

1996 3614412
127744 34
220684306

output:

1 27875 23

result:

points 1.0 correct, ask1 called 27875 time(s), ask2 called 23 time(s)

Test #114:

score: 90
Accepted
time: 674ms
memory: 101040kb

input:

1999 889805
127936 34
558690153

output:

1 34108 24

result:

points 1.0 correct, ask1 called 34108 time(s), ask2 called 24 time(s)

Test #115:

score: 90
Accepted
time: 745ms
memory: 100264kb

input:

1996 989857
127744 34
896663231

output:

1 37939 24

result:

points 1.0 correct, ask1 called 37939 time(s), ask2 called 24 time(s)

Test #116:

score: 90
Accepted
time: 705ms
memory: 101928kb

input:

1997 1962823
127808 34
498867565

output:

1 28464 27

result:

points 1.0 correct, ask1 called 28464 time(s), ask2 called 27 time(s)

Test #117:

score: 90
Accepted
time: 777ms
memory: 99884kb

input:

1999 3098986
127936 34
836873412

output:

1 43278 32

result:

points 1.0 correct, ask1 called 43278 time(s), ask2 called 32 time(s)

Test #118:

score: 90
Accepted
time: 616ms
memory: 100084kb

input:

2000 1712383
128000 34
101137434

output:

1 23859 18

result:

points 1.0 correct, ask1 called 23859 time(s), ask2 called 18 time(s)

Test #119:

score: 90
Accepted
time: 746ms
memory: 101240kb

input:

1997 1413465
127808 34
439110513

output:

1 37075 24

result:

points 1.0 correct, ask1 called 37075 time(s), ask2 called 24 time(s)

Test #120:

score: 90
Accepted
time: 731ms
memory: 99912kb

input:

1997 567610
127808 34
777116360

output:

1 35211 30

result:

points 1.0 correct, ask1 called 35211 time(s), ask2 called 30 time(s)

Test #121:

score: 90
Accepted
time: 822ms
memory: 101488kb

input:

1998 2586018
127872 34
41347615

output:

1 43853 34

result:

points 1.0 correct, ask1 called 43853 time(s), ask2 called 34 time(s)

Test #122:

score: 90
Accepted
time: 805ms
memory: 100004kb

input:

2000 3696844
128000 34
379353461

output:

1 44618 32

result:

points 1.0 correct, ask1 called 44618 time(s), ask2 called 32 time(s)

Test #123:

score: 90
Accepted
time: 801ms
memory: 101436kb

input:

2000 3346757
128000 34
717293772

output:

1 43275 27

result:

points 1.0 correct, ask1 called 43275 time(s), ask2 called 27 time(s)

Test #124:

score: 90
Accepted
time: 892ms
memory: 101328kb

input:

2000 738225
128000 34
1055299619

output:

1 47030 29

result:

points 1.0 correct, ask1 called 47030 time(s), ask2 called 29 time(s)

Test #125:

score: 90
Accepted
time: 724ms
memory: 99820kb

input:

1998 995051
127872 34
319563641

output:

1 35113 28

result:

points 1.0 correct, ask1 called 35113 time(s), ask2 called 28 time(s)

Test #126:

score: 90
Accepted
time: 766ms
memory: 101164kb

input:

1996 1342439
127744 34
657536720

output:

1 41605 30

result:

points 1.0 correct, ask1 called 41605 time(s), ask2 called 30 time(s)

Test #127:

score: 90
Accepted
time: 805ms
memory: 102328kb

input:

1998 2195569
127872 34
995542567

output:

1 42266 29

result:

points 1.0 correct, ask1 called 42266 time(s), ask2 called 29 time(s)

Test #128:

score: 90
Accepted
time: 649ms
memory: 101108kb

input:

1998 3396088
127872 34
597779668

output:

1 28896 25

result:

points 1.0 correct, ask1 called 28896 time(s), ask2 called 25 time(s)

Test #129:

score: 90
Accepted
time: 817ms
memory: 100644kb

input:

1996 2085649
127744 34
935752747

output:

1 43461 30

result:

points 1.0 correct, ask1 called 43461 time(s), ask2 called 30 time(s)

Test #130:

score: 90
Accepted
time: 699ms
memory: 101048kb

input:

1999 3989063
127936 34
199984002

output:

1 31133 22

result:

points 1.0 correct, ask1 called 31133 time(s), ask2 called 22 time(s)

Test #131:

score: 90
Accepted
time: 776ms
memory: 100744kb

input:

1996 3477880
127744 34
537989849

output:

1 38149 24

result:

points 1.0 correct, ask1 called 38149 time(s), ask2 called 24 time(s)

Test #132:

score: 90
Accepted
time: 751ms
memory: 101736kb

input:

1999 1064883
127936 34
875962927

output:

1 37412 26

result:

points 1.0 correct, ask1 called 37412 time(s), ask2 called 26 time(s)

Test #133:

score: 90
Accepted
time: 819ms
memory: 102212kb

input:

1999 194151
127936 34
140226950

output:

1 44702 33

result:

points 1.0 correct, ask1 called 44702 time(s), ask2 called 33 time(s)

Test #134:

score: 90
Accepted
time: 906ms
memory: 102344kb

input:

1999 2202242
127936 34
478200029

output:

1 49931 29

result:

points 1.0 correct, ask1 called 49931 time(s), ask2 called 29 time(s)

Test #135:

score: 90
Accepted
time: 751ms
memory: 100040kb

input:

1997 1962877
127808 34
816205876

output:

1 38952 28

result:

points 1.0 correct, ask1 called 38952 time(s), ask2 called 28 time(s)

Test #136:

score: 90
Accepted
time: 799ms
memory: 100364kb

input:

1997 1084254
127808 34
80437130

output:

1 47790 31

result:

points 1.0 correct, ask1 called 47790 time(s), ask2 called 31 time(s)

Test #137:

score: 90
Accepted
time: 667ms
memory: 100320kb

input:

2000 1991435
128000 34
418442977

output:

1 31439 24

result:

points 1.0 correct, ask1 called 31439 time(s), ask2 called 24 time(s)

Test #138:

score: 65
Acceptable Answer
time: 886ms
memory: 100872kb

input:

1999 382653
127936 34
756448824

output:

1 54233 35

result:

points 0.72222222220 correct, ask1 called 54233 time(s), ask2 called 35 time(s)

Test #139:

score: 90
Accepted
time: 726ms
memory: 100364kb

input:

2000 3032817
128000 34
20647310

output:

1 32312 29

result:

points 1.0 correct, ask1 called 32312 time(s), ask2 called 29 time(s)

Test #140:

score: 90
Accepted
time: 786ms
memory: 101036kb

input:

1997 1864063
127808 34
696626236

output:

1 40926 29

result:

points 1.0 correct, ask1 called 40926 time(s), ask2 called 29 time(s)