#include "dzilib.h" #include<bits/stdc++.h> using namespace std; #define ll long long #define fi first #define se second bool pflg[20000005]; int lim=10; vector <ll> pri; ll limn,limc; ll del; mt19937_64 rnd(114514); vector <ll> ans; int len; vector <pair<ll,int> > mem; ll mycalc(ll x) { // cerr<<x<<":\n"; int res=1; for(int i=0;pri[i]*pri[i]<=x;i++) if(x%pri[i]==0) { // cerr<<x<<" "<<i<<" "<<per[i]<<"\n"; int tot=0; while(x%pri[i]==0) x/=pri[i],tot++; res*=(tot+1); } if(x>1) res*=2LL; return res; } bool chk(ll x,int tar) { ll tmp_x=x; // return mycalc(x)==tar; int res=1; for(int i=0;pri[i]*pri[i]*pri[i]<=x;i++) if(x%pri[i]==0) { // cerr<<x<<" "<<i<<" "<<per[i]<<"\n"; int tot=0; while(x%pri[i]==0) x/=pri[i],tot++; res*=(tot+1); if(tar%res) return 0; } if(x>1) { if(2LL*res!=tar&&3LL*res!=tar&&4LL*res!=tar) return 0; return mycalc(tmp_x)==tar; } else { // res*=2LL; return res==tar; } } ll myquery(ll x) { int y=Ask(x+del); mem.push_back(make_pair(x,y)); for(int i=0;i<ans.size();i++) if(!chk(ans[i]+x,y)) ans.erase(ans.begin()+i),i--; return y; } bool dfs(int pos,ll res) { // cout<<len<<" "<<del<<" "<<pos<<" "<<res<<"\n"; // system("pause"); if(pos>=len) { int ok=1; ll res2=res; for(int j=0;j<mem.size();j++) if(!chk(res2+mem[j].fi,mem[j].se)) { ok=0; break; } if(!ok) return 0; if(mem.size()>lim) { ans.clear(),ans.push_back(res2); return 1; } ans.push_back(res2); return 0; } if(len-pos<=8) { for(int mask=0;mask<(1<<(len-pos));mask++) { ll res2=res; int ok=1; for(int j=0;j<(len-pos);j++) if(mask&(1LL<<j)) res2|=(1LL<<(pos+j)); for(int j=0;j<mem.size();j++) if(!chk(res2+mem[j].fi,mem[j].se)) { ok=0; break; } if(!ok) continue; if(mem.size()>lim) { ans.clear(),ans.push_back(res2); return 1; } ans.push_back(res2); } return 0; } int t=myquery((1LL<<pos)-res); // if(t%(pos+1)) // { // dfs(pos+1,res+(1LL<<pos)); // return; // } // cout<<t<<"\n"; for(int div=1;div<t;div++) { if(t%div==0) { int tz=div-1; if(tz<pos) continue; tz-=pos; if(pos+tz-1>=len) continue; int pos2=pos; ll res2=res; while(tz--) res2+=(1LL<<pos2),pos2++; pos2++; if(dfs(pos2,res2)) return 1; } // else break; } if(t<60) { ll res2=(1LL<<(t-1)); res2-=((1LL<<pos)-res); if(1<=res2-del&&res2-del<=limn) ans.push_back(res2); } return 0; } void work() { mem.clear(),ans.clear(); // for(int mask=0;mask<(1<<3);mask++) // { // int ok=1; // for(int tr=0;tr<3;tr++) // { // int d=8-mask+rnd()%10000*8; // int t=myquery(d); // if(t<60) // { // ll res=(1LL<<(t-1)); // res-=d; // if(1<=res-del&&res-del<=limn) ans.push_back(res); // } // int fnd=0; // for(int j=1;j<t;j++) if(t%j==0&&j>=4) fnd=1; // if(!fnd) // { // ok=0; // break; // } // } // if(ok) cerr<<mask<<"\n",dfs(3,mask); // // } dfs(0,0); // cerr<<ans.size()<<"\n"; while(ans.size()>1) { ll u=rnd()%1000000000LL; ll t=myquery(u); for(int j=0;j<ans.size();j++) if(!chk(ans[j]+u,t)) ans.erase(ans.begin()+j),j--; } // cerr<<"find: "<<ans[0]-del<<"\n"; Answer(ans[0]-del); } int main() { // freopen("input.txt","r",stdin); // for(int i=1;i<=10;i++) cout<<rnd()%(ll)(1e14)+1<<"\n"; for(int i=2;i<=20000000;i++) if(!pflg[i]) { pri.push_back(1LL*i); for(int j=i+i;j<=20000000;j+=i) pflg[j]=1; } int _ = GetT(); int q = GetQ(); // if(q>=2000) lim=10000; limc = GetC(); limn = GetN(); if(limn<=1e9) del=1028529578,len=31,lim=10000; else del=10968284968182LL,len=48; // del=0; while(_--) { work(); } return 0; } //#include "dzilib.cpp" /* g++ -O3 -static -o dzi dzi.cpp dzilib.cpp -std=c++20 dzi.exe 10 100000000000000 10000 100000000000000000 57286629572616 19285769035968 93856571675678 285628572 23957 29578696828957 123 114514 2957691729556 12750968037860 */
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | #include "dzilib.h" #include<bits/stdc++.h> using namespace std; #define ll long long #define fi first #define se second bool pflg[20000005]; int lim=10; vector <ll> pri; ll limn,limc; ll del; mt19937_64 rnd(114514); vector <ll> ans; int len; vector <pair<ll,int> > mem; ll mycalc(ll x) { // cerr<<x<<":\n"; int res=1; for(int i=0;pri[i]*pri[i]<=x;i++) if(x%pri[i]==0) { // cerr<<x<<" "<<i<<" "<<per[i]<<"\n"; int tot=0; while(x%pri[i]==0) x/=pri[i],tot++; res*=(tot+1); } if(x>1) res*=2LL; return res; } bool chk(ll x,int tar) { ll tmp_x=x; // return mycalc(x)==tar; int res=1; for(int i=0;pri[i]*pri[i]*pri[i]<=x;i++) if(x%pri[i]==0) { // cerr<<x<<" "<<i<<" "<<per[i]<<"\n"; int tot=0; while(x%pri[i]==0) x/=pri[i],tot++; res*=(tot+1); if(tar%res) return 0; } if(x>1) { if(2LL*res!=tar&&3LL*res!=tar&&4LL*res!=tar) return 0; return mycalc(tmp_x)==tar; } else { // res*=2LL; return res==tar; } } ll myquery(ll x) { int y=Ask(x+del); mem.push_back(make_pair(x,y)); for(int i=0;i<ans.size();i++) if(!chk(ans[i]+x,y)) ans.erase(ans.begin()+i),i--; return y; } bool dfs(int pos,ll res) { // cout<<len<<" "<<del<<" "<<pos<<" "<<res<<"\n"; // system("pause"); if(pos>=len) { int ok=1; ll res2=res; for(int j=0;j<mem.size();j++) if(!chk(res2+mem[j].fi,mem[j].se)) { ok=0; break; } if(!ok) return 0; if(mem.size()>lim) { ans.clear(),ans.push_back(res2); return 1; } ans.push_back(res2); return 0; } if(len-pos<=8) { for(int mask=0;mask<(1<<(len-pos));mask++) { ll res2=res; int ok=1; for(int j=0;j<(len-pos);j++) if(mask&(1LL<<j)) res2|=(1LL<<(pos+j)); for(int j=0;j<mem.size();j++) if(!chk(res2+mem[j].fi,mem[j].se)) { ok=0; break; } if(!ok) continue; if(mem.size()>lim) { ans.clear(),ans.push_back(res2); return 1; } ans.push_back(res2); } return 0; } int t=myquery((1LL<<pos)-res); // if(t%(pos+1)) // { // dfs(pos+1,res+(1LL<<pos)); // return; // } // cout<<t<<"\n"; for(int div=1;div<t;div++) { if(t%div==0) { int tz=div-1; if(tz<pos) continue; tz-=pos; if(pos+tz-1>=len) continue; int pos2=pos; ll res2=res; while(tz--) res2+=(1LL<<pos2),pos2++; pos2++; if(dfs(pos2,res2)) return 1; } // else break; } if(t<60) { ll res2=(1LL<<(t-1)); res2-=((1LL<<pos)-res); if(1<=res2-del&&res2-del<=limn) ans.push_back(res2); } return 0; } void work() { mem.clear(),ans.clear(); // for(int mask=0;mask<(1<<3);mask++) // { // int ok=1; // for(int tr=0;tr<3;tr++) // { // int d=8-mask+rnd()%10000*8; // int t=myquery(d); // if(t<60) // { // ll res=(1LL<<(t-1)); // res-=d; // if(1<=res-del&&res-del<=limn) ans.push_back(res); // } // int fnd=0; // for(int j=1;j<t;j++) if(t%j==0&&j>=4) fnd=1; // if(!fnd) // { // ok=0; // break; // } // } // if(ok) cerr<<mask<<"\n",dfs(3,mask); // // } dfs(0,0); // cerr<<ans.size()<<"\n"; while(ans.size()>1) { ll u=rnd()%1000000000LL; ll t=myquery(u); for(int j=0;j<ans.size();j++) if(!chk(ans[j]+u,t)) ans.erase(ans.begin()+j),j--; } // cerr<<"find: "<<ans[0]-del<<"\n"; Answer(ans[0]-del); } int main() { // freopen("input.txt","r",stdin); // for(int i=1;i<=10;i++) cout<<rnd()%(ll)(1e14)+1<<"\n"; for(int i=2;i<=20000000;i++) if(!pflg[i]) { pri.push_back(1LL*i); for(int j=i+i;j<=20000000;j+=i) pflg[j]=1; } int _ = GetT(); int q = GetQ(); // if(q>=2000) lim=10000; limc = GetC(); limn = GetN(); if(limn<=1e9) del=1028529578,len=31,lim=10000; else del=10968284968182LL,len=48; // del=0; while(_--) { work(); } return 0; } //#include "dzilib.cpp" /* g++ -O3 -static -o dzi dzi.cpp dzilib.cpp -std=c++20 dzi.exe 10 100000000000000 10000 100000000000000000 57286629572616 19285769035968 93856571675678 285628572 23957 29578696828957 123 114514 2957691729556 12750968037860 */ |