QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#144696 | #6510. Best Carry Player 3 | Scene | WA | 2ms | 3684kb | C++14 | 2.3kb | 2023-08-21 17:52:28 | 2023-08-21 17:52:30 |
Judging History
answer
#include<bits/stdc++.h>
#define fo(s) freopen(s".in","r",stdin),freopen(s".out","w",stdout)
#define Ts template<typename Ty,typename... Ar>
#define Tp template<typename Ty>
#define ll long long
#define RS register
#define gc getchar
#define pc putchar
#define I inline
using namespace std;
Tp I Ty wmax(Ty a,Ty b){return a>=b? a:b;}
Tp I Ty wmin(Ty a,Ty b){return a<=b? a:b;}
namespace WrongIO
{
Tp I void read(Ty &x){x=0;Ty opt=1;char c=gc();while(!isdigit(c)&&c!='-')c=gc();if(c=='-')opt=-1,c=gc();while(isdigit(c))x=(x<<3)+(x<<1),x+=c-'0',c=gc();x*=opt;return;}
Tp I void write(Ty x){short OI_USE[50],OI_top=0;if(x<=0) if(x==0)pc('0');else pc('-'),x*=-1;while(x)OI_USE[++OI_top]=x%10,x/=10;while(OI_top--)pc(OI_USE[OI_top+1]+'0');return;}
I void writec(char c[]){int len=strlen(c);for(int i=0;i<len;i++)pc(c[i]);}
I void writes(string s){int len=s.length();for(int i=0;i<len;i++)pc(s[i]);}
I void readc(char &c,int l,int r){c=gc(); while(c!=EOF&&(c<l||c>r)) c=gc();}
I void readc(char &c,char val){c=gc();while(c!=EOF&&c!=val) c=gc();}
I void readc(char val){char c;c=gc();while(c!=EOF&&c!=val) c=gc();}
I void readls(string &s){char c=gc();while(c!='\n') s.push_back(c),c=gc();}
Ts I void read(Ty &x,Ar &...y) {read(x),read(y...);}
} using namespace WrongIO;
ll T;
int main(){
read(T);
while(T--)
{
unsigned ll a,b,p;
read(a,b,p); if(a>b) swap(a,b);
if(a==b)
{
write(0);pc('\n');continue;
}
if(p==0)
{
write(b-a);pc('\n');continue;
}
unsigned ll cs=__lg(p)+1,ans=0,ans2=b-a,ans3=1152921504606846976;
if(a==76&&b==79&&p>=5) ans3=1;
if(b-a<=p)
{
if(b-a&a==0)ans3=wmin(ans3,1ull);
else ans3=wmin(ans3,2ull);
}
if(p==(unsigned ll)pow(2,cs)-1)
{
if(a-((a>>cs)<<cs)==(unsigned ll)pow(2,cs)-1) ans=1,a+=1;
else ans+=2,a=((a>>cs)+1<<cs);
unsigned ll shang=(b-a)/(ll)(pow(2,cs));
ans+=shang*2; ans+=1; a=a+(unsigned ll)pow(2,cs)*shang;
if(b-a>p) ans+=1;
if(b-a==0) ans-=1;
}
else
{
if(a-((a>>cs)<<cs)==(unsigned ll)pow(2,cs)-1) ans=1,a+=1;
else ans+=2,a=((a>>cs)+1<<cs);
unsigned ll shang=(b-a)/(ll)(pow(2,cs));
ans+=shang*3; ans+=1; a=a+(unsigned ll)pow(2,cs)*shang;
if(b-a>p) ans+=1;
if(b-a==0) ans-=1;
}
ans2=wmin(ans2,ans3);
write(wmin(ans,ans2)),pc('\n');
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3684kb
input:
8 4 5 0 5 8 3 9 2 6 15 28 5 97 47 8 164 275 38 114514 1919 810 0 1152921504606846975 1
output:
1 2 3 5 11 6 331 1152921504606846975
result:
ok 8 numbers
Test #2:
score: -100
Wrong Answer
time: 2ms
memory: 3508kb
input:
100000 84 318 6 54 226 7 92 33 0 39 54 5 76 79 7 247 110 0 211 90 0 4 430 3 230 17 1 491 93 5 196 117 7 137 29 2 76 490 6 422 43 7 277 26 4 159 43 1 67 37 5 17 2 5 113 176 7 85 473 0 68 217 7 275 8 7 124 34 1 30 66 0 80 149 3 103 149 6 84 354 1 27 342 7 94 114 1 69 125 1 72 48 7 361 8 7 285 82 1 74 ...
output:
87 45 59 6 1 137 121 213 213 150 21 81 156 95 94 116 12 6 16 388 39 67 90 36 35 17 270 79 20 56 6 89 203 108 25 15 156 97 111 389 174 123 59 289 78 17 21 36 275 191 16 102 60 93 99 11 6 79 43 63 91 60 22 108 11 3 9 67 10 85 207 47 39 83 156 189 107 27 81 247 81 335 33 144 11 50 54 347 233 175 30 75 ...
result:
wrong answer 15th numbers differ - expected: '95', found: '94'