QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#183455 | #5375. Search | Lynkcat | 100 ✓ | 817ms | 102792kb | C++20 | 5.2kb | 2023-09-19 15:43:31 | 2023-09-19 15:43:31 |
Judging History
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)];
if (x<=pos[y]) return "<";
if (x>bnd[y]) return ">";
t2++;
string res=ask2(x,y);
Mp1[mp(x,y)]=res;
if (res=="<") pos[y]=max(pos[y],x);
else bnd[y]=min(bnd[y],x-1);
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 (tot&&t1+tot*(__lg(tot))>128000||t2+__lg(all.size())>34)
{
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));
stable_sort(all.begin(),all.end(),[&](pa x,pa y)
{
return query1(x.fi,x.se,y.fi,y.se)=="<";
});
int l=0,r=all.size()-1;
int res=0;
while (l<=r)
{
int mid=l+(r-l)/2;
if (query2(all[mid].fi,all[mid].se)=="<")
{
res=mid+1;
l=mid+1;
} else r=mid-1;
}
for (int i=0;i<res;i++)
pos[all[i].se]=bnd[all[i].se]=all[i].fi;
return 1;
}
// 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)=="<")
{
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
{
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;
}
}
詳細信息
Subtask #1:
score: 10
Accepted
Test #1:
score: 10
Accepted
time: 1ms
memory: 6008kb
input:
6 3 384 45 837639677
output:
1 78 6
result:
points 1.0 correct, ask1 called 78 time(s), ask2 called 6 time(s)
Test #2:
score: 10
Accepted
time: 1ms
memory: 5988kb
input:
8 59 512 45 439876779
output:
1 176 6
result:
points 1.0 correct, ask1 called 176 time(s), ask2 called 6 time(s)
Test #3:
score: 10
Accepted
time: 1ms
memory: 5988kb
input:
9 27 576 45 777817090
output:
1 182 7
result:
points 1.0 correct, ask1 called 182 time(s), ask2 called 7 time(s)
Test #4:
score: 10
Accepted
time: 1ms
memory: 6004kb
input:
7 14 448 45 42081112
output:
1 75 6
result:
points 1.0 correct, ask1 called 75 time(s), ask2 called 6 time(s)
Test #5:
score: 10
Accepted
time: 1ms
memory: 5972kb
input:
6 14 384 45 380054191
output:
1 81 6
result:
points 1.0 correct, ask1 called 81 time(s), ask2 called 6 time(s)
Test #6:
score: 10
Accepted
time: 1ms
memory: 5964kb
input:
9 13 576 45 718060038
output:
1 133 6
result:
points 1.0 correct, ask1 called 133 time(s), ask2 called 6 time(s)
Test #7:
score: 10
Accepted
time: 1ms
memory: 6300kb
input:
9 16 576 45 1056065885
output:
1 221 7
result:
points 1.0 correct, ask1 called 221 time(s), ask2 called 7 time(s)
Test #8:
score: 10
Accepted
time: 1ms
memory: 5964kb
input:
7 41 448 45 320297139
output:
1 74 6
result:
points 1.0 correct, ask1 called 74 time(s), ask2 called 6 time(s)
Test #9:
score: 10
Accepted
time: 1ms
memory: 5944kb
input:
7 33 448 45 658302986
output:
1 92 6
result:
points 1.0 correct, ask1 called 92 time(s), ask2 called 6 time(s)
Test #10:
score: 10
Accepted
time: 1ms
memory: 5972kb
input:
7 30 448 45 996276065
output:
1 82 6
result:
points 1.0 correct, ask1 called 82 time(s), ask2 called 6 time(s)
Test #11:
score: 10
Accepted
time: 0ms
memory: 5968kb
input:
7 37 448 45 598480398
output:
1 80 5
result:
points 1.0 correct, ask1 called 80 time(s), ask2 called 5 time(s)
Test #12:
score: 10
Accepted
time: 1ms
memory: 6280kb
input:
10 27 640 45 936486245
output:
1 245 7
result:
points 1.0 correct, ask1 called 245 time(s), ask2 called 7 time(s)
Test #13:
score: 10
Accepted
time: 1ms
memory: 5992kb
input:
8 22 512 45 200750268
output:
1 178 6
result:
points 1.0 correct, ask1 called 178 time(s), ask2 called 6 time(s)
Test #14:
score: 10
Accepted
time: 0ms
memory: 6016kb
input:
10 41 640 45 538723346
output:
1 228 6
result:
points 1.0 correct, ask1 called 228 time(s), ask2 called 6 time(s)
Test #15:
score: 10
Accepted
time: 1ms
memory: 5968kb
input:
6 35 384 45 876729193
output:
1 70 5
result:
points 1.0 correct, ask1 called 70 time(s), ask2 called 5 time(s)
Test #16:
score: 10
Accepted
time: 1ms
memory: 6276kb
input:
10 98 640 45 140960448
output:
1 216 7
result:
points 1.0 correct, ask1 called 216 time(s), ask2 called 7 time(s)
Test #17:
score: 10
Accepted
time: 1ms
memory: 5992kb
input:
8 36 512 45 478966295
output:
1 164 7
result:
points 1.0 correct, ask1 called 164 time(s), ask2 called 7 time(s)
Test #18:
score: 10
Accepted
time: 1ms
memory: 6000kb
input:
8 9 512 45 81170628
output:
1 200 7
result:
points 1.0 correct, ask1 called 200 time(s), ask2 called 7 time(s)
Test #19:
score: 10
Accepted
time: 1ms
memory: 5972kb
input:
6 20 384 45 419176475
output:
1 84 6
result:
points 1.0 correct, ask1 called 84 time(s), ask2 called 6 time(s)
Test #20:
score: 10
Accepted
time: 1ms
memory: 5936kb
input:
6 23 384 45 757149553
output:
1 85 5
result:
points 1.0 correct, ask1 called 85 time(s), ask2 called 5 time(s)
Subtask #2:
score: 90
Accepted
Test #21:
score: 90
Accepted
time: 606ms
memory: 101496kb
input:
1998 997469 511488 45 691176210
output:
1 67879 22
result:
points 1.0 correct, ask1 called 67879 time(s), ask2 called 22 time(s)
Test #22:
score: 90
Accepted
time: 634ms
memory: 101120kb
input:
1997 250682 511232 45 1029182057
output:
1 89996 22
result:
points 1.0 correct, ask1 called 89996 time(s), ask2 called 22 time(s)
Test #23:
score: 90
Accepted
time: 709ms
memory: 99448kb
input:
2000 1742216 512000 45 293413312
output:
1 117488 28
result:
points 1.0 correct, ask1 called 117488 time(s), ask2 called 28 time(s)
Test #24:
score: 90
Accepted
time: 636ms
memory: 99856kb
input:
1996 2394420 510976 45 631419158
output:
1 111464 26
result:
points 1.0 correct, ask1 called 111464 time(s), ask2 called 26 time(s)
Test #25:
score: 90
Accepted
time: 659ms
memory: 101300kb
input:
1998 3398507 511488 45 969425005
output:
1 87648 27
result:
points 1.0 correct, ask1 called 87648 time(s), ask2 called 27 time(s)
Test #26:
score: 90
Accepted
time: 665ms
memory: 101100kb
input:
1998 574252 511488 45 571662106
output:
1 89726 27
result:
points 1.0 correct, ask1 called 89726 time(s), ask2 called 27 time(s)
Test #27:
score: 90
Accepted
time: 580ms
memory: 100360kb
input:
1996 1162097 510976 45 909635185
output:
1 96767 23
result:
points 1.0 correct, ask1 called 96767 time(s), ask2 called 23 time(s)
Test #28:
score: 90
Accepted
time: 652ms
memory: 100208kb
input:
1999 1287929 511744 45 173899208
output:
1 80577 27
result:
points 1.0 correct, ask1 called 80577 time(s), ask2 called 27 time(s)
Test #29:
score: 90
Accepted
time: 645ms
memory: 100684kb
input:
1996 513076 510976 45 511839519
output:
1 90321 26
result:
points 1.0 correct, ask1 called 90321 time(s), ask2 called 26 time(s)
Test #30:
score: 90
Accepted
time: 676ms
memory: 100832kb
input:
1999 2359752 511744 45 849845365
output:
1 90908 26
result:
points 1.0 correct, ask1 called 90908 time(s), ask2 called 26 time(s)
Test #31:
score: 90
Accepted
time: 575ms
memory: 100852kb
input:
1996 1905307 510976 45 114109388
output:
1 64301 23
result:
points 1.0 correct, ask1 called 64301 time(s), ask2 called 23 time(s)
Test #32:
score: 90
Accepted
time: 660ms
memory: 99720kb
input:
1999 3464342 511744 45 452082467
output:
1 100817 27
result:
points 1.0 correct, ask1 called 100817 time(s), ask2 called 27 time(s)
Test #33:
score: 90
Accepted
time: 678ms
memory: 100848kb
input:
1997 3041161 511232 45 790088314
output:
1 60527 25
result:
points 1.0 correct, ask1 called 60527 time(s), ask2 called 25 time(s)
Test #34:
score: 90
Accepted
time: 698ms
memory: 99680kb
input:
1999 605699 511744 45 54319568
output:
1 90557 27
result:
points 1.0 correct, ask1 called 90557 time(s), ask2 called 27 time(s)
Test #35:
score: 90
Accepted
time: 810ms
memory: 102792kb
input:
2000 3411048 512000 45 392325415
output:
1 89206 27
result:
points 1.0 correct, ask1 called 89206 time(s), ask2 called 27 time(s)
Test #36:
score: 90
Accepted
time: 738ms
memory: 101536kb
input:
1999 1677521 511744 45 730331262
output:
1 119796 27
result:
points 1.0 correct, ask1 called 119796 time(s), ask2 called 27 time(s)
Test #37:
score: 90
Accepted
time: 734ms
memory: 101348kb
input:
1997 1645949 511232 45 1068271572
output:
1 63391 28
result:
points 1.0 correct, ask1 called 63391 time(s), ask2 called 28 time(s)
Test #38:
score: 90
Accepted
time: 730ms
memory: 100240kb
input:
2000 1395508 512000 45 670508674
output:
1 87176 29
result:
points 1.0 correct, ask1 called 87176 time(s), ask2 called 29 time(s)
Test #39:
score: 90
Accepted
time: 566ms
memory: 99768kb
input:
2000 1045422 512000 45 1008514521
output:
1 65163 21
result:
points 1.0 correct, ask1 called 65163 time(s), ask2 called 21 time(s)
Test #40:
score: 90
Accepted
time: 605ms
memory: 99744kb
input:
2000 2404123 512000 45 272745775
output:
1 69349 25
result:
points 1.0 correct, ask1 called 69349 time(s), ask2 called 25 time(s)
Test #41:
score: 90
Accepted
time: 722ms
memory: 100424kb
input:
1998 2301912 511488 45 610751622
output:
1 101369 25
result:
points 1.0 correct, ask1 called 101369 time(s), ask2 called 25 time(s)
Test #42:
score: 90
Accepted
time: 562ms
memory: 100536kb
input:
2000 3412738 512000 45 948757469
output:
1 76586 20
result:
points 1.0 correct, ask1 called 76586 time(s), ask2 called 20 time(s)
Test #43:
score: 90
Accepted
time: 738ms
memory: 101116kb
input:
1998 3469663 511488 45 212988724
output:
1 99402 27
result:
points 1.0 correct, ask1 called 99402 time(s), ask2 called 27 time(s)
Test #44:
score: 90
Accepted
time: 600ms
memory: 99676kb
input:
1996 3617351 510976 45 550961802
output:
1 104079 21
result:
points 1.0 correct, ask1 called 104079 time(s), ask2 called 21 time(s)
Test #45:
score: 90
Accepted
time: 525ms
memory: 101148kb
input:
1998 710945 511488 45 888934881
output:
1 56124 18
result:
points 1.0 correct, ask1 called 56124 time(s), ask2 called 18 time(s)
Test #46:
score: 90
Accepted
time: 677ms
memory: 99636kb
input:
1999 2333740 511744 45 153198904
output:
1 78480 30
result:
points 1.0 correct, ask1 called 78480 time(s), ask2 called 30 time(s)
Test #47:
score: 90
Accepted
time: 608ms
memory: 101176kb
input:
1998 1878695 511488 45 491171982
output:
1 106520 21
result:
points 1.0 correct, ask1 called 106520 time(s), ask2 called 21 time(s)
Test #48:
score: 90
Accepted
time: 554ms
memory: 99652kb
input:
1997 3590574 511232 45 93441852
output:
1 34057 20
result:
points 1.0 correct, ask1 called 34057 time(s), ask2 called 20 time(s)
Test #49:
score: 90
Accepted
time: 737ms
memory: 100748kb
input:
1996 1801543 510976 45 431414931
output:
1 81479 31
result:
points 1.0 correct, ask1 called 81479 time(s), ask2 called 31 time(s)
Test #50:
score: 90
Accepted
time: 780ms
memory: 100980kb
input:
1999 3672188 511744 45 769420777
output:
1 104237 27
result:
points 1.0 correct, ask1 called 104237 time(s), ask2 called 27 time(s)
Test #51:
score: 90
Accepted
time: 798ms
memory: 101236kb
input:
1997 1535960 383424 38 726700757
output:
1 100138 34
result:
points 1.0 correct, ask1 called 100138 time(s), ask2 called 34 time(s)
Test #52:
score: 90
Accepted
time: 717ms
memory: 99524kb
input:
1999 3382611 383808 38 1064673836
output:
1 104410 30
result:
points 1.0 correct, ask1 called 104410 time(s), ask2 called 30 time(s)
Test #53:
score: 90
Accepted
time: 656ms
memory: 100860kb
input:
1999 2544646 383808 38 328937859
output:
1 59099 25
result:
points 1.0 correct, ask1 called 59099 time(s), ask2 called 25 time(s)
Test #54:
score: 90
Accepted
time: 657ms
memory: 101008kb
input:
2000 3759384 384000 38 666910937
output:
1 92484 26
result:
points 1.0 correct, ask1 called 92484 time(s), ask2 called 26 time(s)
Test #55:
score: 90
Accepted
time: 734ms
memory: 100312kb
input:
2000 767997 384000 38 269148039
output:
1 66819 28
result:
points 1.0 correct, ask1 called 66819 time(s), ask2 called 28 time(s)
Test #56:
score: 90
Accepted
time: 602ms
memory: 100648kb
input:
1997 1437146 383424 38 607153886
output:
1 93109 22
result:
points 1.0 correct, ask1 called 93109 time(s), ask2 called 22 time(s)
Test #57:
score: 90
Accepted
time: 706ms
memory: 100956kb
input:
2000 1776612 384000 38 945159732
output:
1 52177 24
result:
points 1.0 correct, ask1 called 52177 time(s), ask2 called 24 time(s)
Test #58:
score: 90
Accepted
time: 718ms
memory: 99528kb
input:
1998 2265321 383616 38 209358219
output:
1 66541 28
result:
points 1.0 correct, ask1 called 66541 time(s), ask2 called 28 time(s)
Test #59:
score: 90
Accepted
time: 733ms
memory: 101372kb
input:
1997 1854922 383424 38 547364066
output:
1 105452 28
result:
points 1.0 correct, ask1 called 105452 time(s), ask2 called 28 time(s)
Test #60:
score: 90
Accepted
time: 724ms
memory: 99488kb
input:
1998 3465840 383616 38 885337145
output:
1 115422 27
result:
points 1.0 correct, ask1 called 115422 time(s), ask2 called 27 time(s)
Test #61:
score: 90
Accepted
time: 680ms
memory: 100748kb
input:
2000 2052285 384000 38 149601167
output:
1 49092 26
result:
points 1.0 correct, ask1 called 49092 time(s), ask2 called 26 time(s)
Test #62:
score: 90
Accepted
time: 791ms
memory: 101788kb
input:
1998 674354 383616 38 487574246
output:
1 91046 30
result:
points 1.0 correct, ask1 called 91046 time(s), ask2 called 30 time(s)
Test #63:
score: 90
Accepted
time: 571ms
memory: 99872kb
input:
1996 3620340 383232 38 825580093
output:
1 80498 21
result:
points 1.0 correct, ask1 called 80498 time(s), ask2 called 21 time(s)
Test #64:
score: 90
Accepted
time: 733ms
memory: 100416kb
input:
1998 1874872 383616 38 89844115
output:
1 48957 25
result:
points 1.0 correct, ask1 called 48957 time(s), ask2 called 25 time(s)
Test #65:
score: 90
Accepted
time: 631ms
memory: 100224kb
input:
1996 995786 383232 38 427817194
output:
1 60241 25
result:
points 1.0 correct, ask1 called 60241 time(s), ask2 called 25 time(s)
Test #66:
score: 90
Accepted
time: 623ms
memory: 101052kb
input:
1996 2420784 383232 38 30021528
output:
1 57419 21
result:
points 1.0 correct, ask1 called 57419 time(s), ask2 called 21 time(s)
Test #67:
score: 90
Accepted
time: 604ms
memory: 100360kb
input:
1999 3356599 383808 38 368027374
output:
1 77274 21
result:
points 1.0 correct, ask1 called 77274 time(s), ask2 called 21 time(s)
Test #68:
score: 90
Accepted
time: 654ms
memory: 100216kb
input:
1999 2485867 383808 38 706033221
output:
1 90019 27
result:
points 1.0 correct, ask1 called 90019 time(s), ask2 called 27 time(s)
Test #69:
score: 90
Accepted
time: 679ms
memory: 102116kb
input:
1997 2470380 383424 38 1044006300
output:
1 59963 24
result:
points 1.0 correct, ask1 called 59963 time(s), ask2 called 24 time(s)
Test #70:
score: 90
Accepted
time: 776ms
memory: 100300kb
input:
1996 1188460 383232 38 308270323
output:
1 118668 28
result:
points 1.0 correct, ask1 called 118668 time(s), ask2 called 28 time(s)
Test #71:
score: 90
Accepted
time: 626ms
memory: 100752kb
input:
1997 2799645 383424 38 646243401
output:
1 68887 22
result:
points 1.0 correct, ask1 called 68887 time(s), ask2 called 22 time(s)
Test #72:
score: 90
Accepted
time: 696ms
memory: 101604kb
input:
1999 699046 383808 38 984249248
output:
1 74098 27
result:
points 1.0 correct, ask1 called 74098 time(s), ask2 called 27 time(s)
Test #73:
score: 90
Accepted
time: 695ms
memory: 100508kb
input:
1999 3857083 383808 38 248447735
output:
1 92965 30
result:
points 1.0 correct, ask1 called 92965 time(s), ask2 called 30 time(s)
Test #74:
score: 90
Accepted
time: 685ms
memory: 99636kb
input:
2000 1079818 384000 38 586453581
output:
1 101517 29
result:
points 1.0 correct, ask1 called 101517 time(s), ask2 called 29 time(s)
Test #75:
score: 90
Accepted
time: 735ms
memory: 100392kb
input:
1997 1404432 383424 38 924459428
output:
1 117059 27
result:
points 1.0 correct, ask1 called 117059 time(s), ask2 called 27 time(s)
Test #76:
score: 90
Accepted
time: 669ms
memory: 100528kb
input:
1997 2700831 383424 38 526696530
output:
1 74485 23
result:
points 1.0 correct, ask1 called 74485 time(s), ask2 called 23 time(s)
Test #77:
score: 90
Accepted
time: 677ms
memory: 99996kb
input:
2000 3097047 384000 38 864669608
output:
1 85241 26
result:
points 1.0 correct, ask1 called 85241 time(s), ask2 called 26 time(s)
Test #78:
score: 90
Accepted
time: 677ms
memory: 101052kb
input:
1998 3569764 383616 38 128933631
output:
1 94490 26
result:
points 1.0 correct, ask1 called 94490 time(s), ask2 called 26 time(s)
Test #79:
score: 90
Accepted
time: 667ms
memory: 99572kb
input:
1998 2103877 383616 38 466906710
output:
1 95837 25
result:
points 1.0 correct, ask1 called 95837 time(s), ask2 called 25 time(s)
Test #80:
score: 90
Accepted
time: 634ms
memory: 99536kb
input:
1998 778278 383616 38 804912557
output:
1 63931 25
result:
points 1.0 correct, ask1 called 63931 time(s), ask2 called 25 time(s)
Test #81:
score: 90
Accepted
time: 652ms
memory: 101264kb
input:
2000 2961353 256000 36 853017067
output:
1 48979 23
result:
points 1.0 correct, ask1 called 48979 time(s), ask2 called 23 time(s)
Test #82:
score: 90
Accepted
time: 536ms
memory: 100800kb
input:
1996 2578498 255488 36 117281089
output:
1 41684 21
result:
points 1.0 correct, ask1 called 41684 time(s), ask2 called 21 time(s)
Test #83:
score: 90
Accepted
time: 695ms
memory: 100892kb
input:
1996 3937961 255488 36 793260015
output:
1 103672 27
result:
points 1.0 correct, ask1 called 103672 time(s), ask2 called 27 time(s)
Test #84:
score: 90
Accepted
time: 650ms
memory: 100804kb
input:
1998 2345897 255744 36 57491270
output:
1 98586 25
result:
points 1.0 correct, ask1 called 98586 time(s), ask2 called 25 time(s)
Test #85:
score: 90
Accepted
time: 743ms
memory: 100332kb
input:
1996 1378943 255488 36 395497116
output:
1 100023 28
result:
points 1.0 correct, ask1 called 100023 time(s), ask2 called 28 time(s)
Test #86:
score: 90
Accepted
time: 551ms
memory: 101012kb
input:
1999 2734233 255872 36 733502963
output:
1 101913 20
result:
points 1.0 correct, ask1 called 101913 time(s), ask2 called 20 time(s)
Test #87:
score: 90
Accepted
time: 683ms
memory: 101080kb
input:
1999 1863500 255872 36 1071476042
output:
1 79890 24
result:
points 1.0 correct, ask1 called 79890 time(s), ask2 called 24 time(s)
Test #88:
score: 90
Accepted
time: 627ms
memory: 100256kb
input:
1999 3838824 255872 36 335740064
output:
1 74372 25
result:
points 1.0 correct, ask1 called 74372 time(s), ask2 called 25 time(s)
Test #89:
score: 90
Accepted
time: 626ms
memory: 101188kb
input:
1996 146619 255488 36 673680375
output:
1 78871 26
result:
points 1.0 correct, ask1 called 78871 time(s), ask2 called 26 time(s)
Test #90:
score: 90
Accepted
time: 687ms
memory: 101660kb
input:
1997 2897460 255616 36 1011686222
output:
1 92941 27
result:
points 1.0 correct, ask1 called 92941 time(s), ask2 called 27 time(s)
Test #91:
score: 90
Accepted
time: 767ms
memory: 101368kb
input:
2000 3588803 256000 36 275917477
output:
1 104931 29
result:
points 1.0 correct, ask1 called 104931 time(s), ask2 called 29 time(s)
Test #92:
score: 90
Accepted
time: 650ms
memory: 100716kb
input:
1999 2052003 255872 36 613923323
output:
1 89562 26
result:
points 1.0 correct, ask1 called 89562 time(s), ask2 called 26 time(s)
Test #93:
score: 90
Accepted
time: 725ms
memory: 100852kb
input:
2000 597416 256000 36 951929170
output:
1 108223 26
result:
points 1.0 correct, ask1 called 108223 time(s), ask2 called 26 time(s)
Test #94:
score: 90
Accepted
time: 667ms
memory: 100196kb
input:
1997 502346 255616 36 216160425
output:
1 110039 26
result:
points 1.0 correct, ask1 called 110039 time(s), ask2 called 26 time(s)
Test #95:
score: 90
Accepted
time: 735ms
memory: 100876kb
input:
1998 1639752 255744 36 892139350
output:
1 118747 31
result:
points 1.0 correct, ask1 called 118747 time(s), ask2 called 31 time(s)
Test #96:
score: 90
Accepted
time: 619ms
memory: 101496kb
input:
2000 2614645 256000 36 156370605
output:
1 80483 23
result:
points 1.0 correct, ask1 called 80483 time(s), ask2 called 23 time(s)
Test #97:
score: 90
Accepted
time: 625ms
memory: 101272kb
input:
1998 2807503 255744 36 494343684
output:
1 108998 23
result:
points 1.0 correct, ask1 called 108998 time(s), ask2 called 23 time(s)
Test #98:
score: 90
Accepted
time: 677ms
memory: 100432kb
input:
2000 3623260 256000 36 832349530
output:
1 107168 23
result:
points 1.0 correct, ask1 called 107168 time(s), ask2 called 23 time(s)
Test #99:
score: 90
Accepted
time: 746ms
memory: 102000kb
input:
1998 16016 255744 36 96613553
output:
1 98357 28
result:
points 1.0 correct, ask1 called 98357 time(s), ask2 called 28 time(s)
Test #100:
score: 90
Accepted
time: 595ms
memory: 101528kb
input:
1996 499201 255488 36 434586632
output:
1 61667 21
result:
points 1.0 correct, ask1 called 61667 time(s), ask2 called 21 time(s)
Test #101:
score: 90
Accepted
time: 661ms
memory: 101360kb
input:
1996 2183083 255488 36 772592479
output:
1 108822 24
result:
points 1.0 correct, ask1 called 108822 time(s), ask2 called 24 time(s)
Test #102:
score: 90
Accepted
time: 757ms
memory: 102332kb
input:
1996 1924199 255488 36 36823733
output:
1 109511 29
result:
points 1.0 correct, ask1 called 109511 time(s), ask2 called 29 time(s)
Test #103:
score: 90
Accepted
time: 651ms
memory: 100124kb
input:
1998 2417054 255744 36 374829580
output:
1 83648 28
result:
points 1.0 correct, ask1 called 83648 time(s), ask2 called 28 time(s)
Test #104:
score: 90
Accepted
time: 752ms
memory: 101520kb
input:
1999 966756 255872 36 712769891
output:
1 90285 29
result:
points 1.0 correct, ask1 called 90285 time(s), ask2 called 29 time(s)
Test #105:
score: 90
Accepted
time: 685ms
memory: 100508kb
input:
1997 271949 255616 36 1050775738
output:
1 110942 23
result:
points 1.0 correct, ask1 called 110942 time(s), ask2 called 23 time(s)
Test #106:
score: 90
Accepted
time: 570ms
memory: 101576kb
input:
1996 2634642 255488 36 315039760
output:
1 83464 21
result:
points 1.0 correct, ask1 called 83464 time(s), ask2 called 21 time(s)
Test #107:
score: 90
Accepted
time: 730ms
memory: 100712kb
input:
1997 1601116 255616 36 653012839
output:
1 86500 32
result:
points 1.0 correct, ask1 called 86500 time(s), ask2 called 32 time(s)
Test #108:
score: 90
Accepted
time: 697ms
memory: 99480kb
input:
1999 1155259 255872 36 255249940
output:
1 45604 27
result:
points 1.0 correct, ask1 called 45604 time(s), ask2 called 27 time(s)
Test #109:
score: 90
Accepted
time: 642ms
memory: 100276kb
input:
1999 284526 255872 36 593255787
output:
1 77377 21
result:
points 1.0 correct, ask1 called 77377 time(s), ask2 called 21 time(s)
Test #110:
score: 90
Accepted
time: 622ms
memory: 102196kb
input:
1997 173135 255616 36 931228866
output:
1 60703 23
result:
points 1.0 correct, ask1 called 60703 time(s), ask2 called 23 time(s)
Test #111:
score: 90
Accepted
time: 625ms
memory: 101188kb
input:
1996 2189413 127744 34 618447205
output:
1 88378 24
result:
points 1.0 correct, ask1 called 88378 time(s), ask2 called 24 time(s)
Test #112:
score: 90
Accepted
time: 783ms
memory: 102044kb
input:
1999 3781216 127936 34 956453051
output:
1 63867 26
result:
points 1.0 correct, ask1 called 63867 time(s), ask2 called 26 time(s)
Test #113:
score: 90
Accepted
time: 634ms
memory: 102112kb
input:
1996 3614412 127744 34 220684306
output:
1 36513 23
result:
points 1.0 correct, ask1 called 36513 time(s), ask2 called 23 time(s)
Test #114:
score: 90
Accepted
time: 744ms
memory: 100284kb
input:
1999 889805 127936 34 558690153
output:
1 85060 29
result:
points 1.0 correct, ask1 called 85060 time(s), ask2 called 29 time(s)
Test #115:
score: 90
Accepted
time: 695ms
memory: 100352kb
input:
1996 989857 127744 34 896663231
output:
1 113392 24
result:
points 1.0 correct, ask1 called 113392 time(s), ask2 called 24 time(s)
Test #116:
score: 90
Accepted
time: 620ms
memory: 100356kb
input:
1997 1962823 127808 34 498867565
output:
1 101430 24
result:
points 1.0 correct, ask1 called 101430 time(s), ask2 called 24 time(s)
Test #117:
score: 90
Accepted
time: 702ms
memory: 99796kb
input:
1999 3098986 127936 34 836873412
output:
1 55492 30
result:
points 1.0 correct, ask1 called 55492 time(s), ask2 called 30 time(s)
Test #118:
score: 90
Accepted
time: 621ms
memory: 100244kb
input:
2000 1712383 128000 34 101137434
output:
1 76730 22
result:
points 1.0 correct, ask1 called 76730 time(s), ask2 called 22 time(s)
Test #119:
score: 90
Accepted
time: 729ms
memory: 99888kb
input:
1997 1413465 127808 34 439110513
output:
1 92258 32
result:
points 1.0 correct, ask1 called 92258 time(s), ask2 called 32 time(s)
Test #120:
score: 90
Accepted
time: 619ms
memory: 100824kb
input:
1997 567610 127808 34 777116360
output:
1 76202 24
result:
points 1.0 correct, ask1 called 76202 time(s), ask2 called 24 time(s)
Test #121:
score: 90
Accepted
time: 596ms
memory: 101012kb
input:
1998 2586018 127872 34 41347615
output:
1 89975 23
result:
points 1.0 correct, ask1 called 89975 time(s), ask2 called 23 time(s)
Test #122:
score: 90
Accepted
time: 806ms
memory: 100892kb
input:
2000 3696844 128000 34 379353461
output:
1 72575 28
result:
points 1.0 correct, ask1 called 72575 time(s), ask2 called 28 time(s)
Test #123:
score: 90
Accepted
time: 772ms
memory: 100368kb
input:
2000 3346757 128000 34 717293772
output:
1 76254 24
result:
points 1.0 correct, ask1 called 76254 time(s), ask2 called 24 time(s)
Test #124:
score: 90
Accepted
time: 700ms
memory: 101528kb
input:
2000 738225 128000 34 1055299619
output:
1 99816 25
result:
points 1.0 correct, ask1 called 99816 time(s), ask2 called 25 time(s)
Test #125:
score: 90
Accepted
time: 627ms
memory: 101192kb
input:
1998 995051 127872 34 319563641
output:
1 65360 21
result:
points 1.0 correct, ask1 called 65360 time(s), ask2 called 21 time(s)
Test #126:
score: 90
Accepted
time: 667ms
memory: 100460kb
input:
1996 1342439 127744 34 657536720
output:
1 96317 26
result:
points 1.0 correct, ask1 called 96317 time(s), ask2 called 26 time(s)
Test #127:
score: 90
Accepted
time: 651ms
memory: 99800kb
input:
1998 2195569 127872 34 995542567
output:
1 98586 22
result:
points 1.0 correct, ask1 called 98586 time(s), ask2 called 22 time(s)
Test #128:
score: 90
Accepted
time: 620ms
memory: 99620kb
input:
1998 3396088 127872 34 597779668
output:
1 81158 24
result:
points 1.0 correct, ask1 called 81158 time(s), ask2 called 24 time(s)
Test #129:
score: 90
Accepted
time: 766ms
memory: 101160kb
input:
1996 2085649 127744 34 935752747
output:
1 92201 29
result:
points 1.0 correct, ask1 called 92201 time(s), ask2 called 29 time(s)
Test #130:
score: 90
Accepted
time: 711ms
memory: 101988kb
input:
1999 3989063 127936 34 199984002
output:
1 114903 26
result:
points 1.0 correct, ask1 called 114903 time(s), ask2 called 26 time(s)
Test #131:
score: 90
Accepted
time: 601ms
memory: 101108kb
input:
1996 3477880 127744 34 537989849
output:
1 50600 21
result:
points 1.0 correct, ask1 called 50600 time(s), ask2 called 21 time(s)
Test #132:
score: 90
Accepted
time: 664ms
memory: 100436kb
input:
1999 1064883 127936 34 875962927
output:
1 109625 26
result:
points 1.0 correct, ask1 called 109625 time(s), ask2 called 26 time(s)
Test #133:
score: 90
Accepted
time: 603ms
memory: 100588kb
input:
1999 194151 127936 34 140226950
output:
1 41387 21
result:
points 1.0 correct, ask1 called 41387 time(s), ask2 called 21 time(s)
Test #134:
score: 90
Accepted
time: 691ms
memory: 99988kb
input:
1999 2202242 127936 34 478200029
output:
1 56831 29
result:
points 1.0 correct, ask1 called 56831 time(s), ask2 called 29 time(s)
Test #135:
score: 90
Accepted
time: 607ms
memory: 99768kb
input:
1997 1962877 127808 34 816205876
output:
1 104299 23
result:
points 1.0 correct, ask1 called 104299 time(s), ask2 called 23 time(s)
Test #136:
score: 90
Accepted
time: 640ms
memory: 100756kb
input:
1997 1084254 127808 34 80437130
output:
1 89459 25
result:
points 1.0 correct, ask1 called 89459 time(s), ask2 called 25 time(s)
Test #137:
score: 90
Accepted
time: 667ms
memory: 102204kb
input:
2000 1991435 128000 34 418442977
output:
1 93568 22
result:
points 1.0 correct, ask1 called 93568 time(s), ask2 called 22 time(s)
Test #138:
score: 90
Accepted
time: 817ms
memory: 100680kb
input:
1999 382653 127936 34 756448824
output:
1 84533 31
result:
points 1.0 correct, ask1 called 84533 time(s), ask2 called 31 time(s)
Test #139:
score: 90
Accepted
time: 612ms
memory: 100644kb
input:
2000 3032817 128000 34 20647310
output:
1 104555 22
result:
points 1.0 correct, ask1 called 104555 time(s), ask2 called 22 time(s)
Test #140:
score: 90
Accepted
time: 712ms
memory: 101300kb
input:
1997 1864063 127808 34 696626236
output:
1 103629 28
result:
points 1.0 correct, ask1 called 103629 time(s), ask2 called 28 time(s)