QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#144684 | #6510. Best Carry Player 3 | Scene | WA | 11ms | 3576kb | C++14 | 2.2kb | 2023-08-21 17:44:16 | 2023-08-21 17:44:16 |
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(b-a<=p&&b-a&p==0) ans3=1;
if(p==(unsigned ll)pow(2,cs)-1)
{
if(a-((a>>cs)<<cs)==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;
if(b-a+(ll)pow(2,cs)*shang>p) ans+=1;
if(b-a+(ll)pow(2,cs)*shang==0) ans-=1;
}
else
{
if(a-((a>>cs)<<cs)==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;
if(b-a-(unsigned ll)pow(2,cs)*shang>p) ans+=1;
if(b-a-(unsigned ll)pow(2,cs)*shang==0) ans-=1;
}
ans=wmin(ans,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: 3576kb
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: 11ms
memory: 3512kb
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 46 59 6 3 137 121 214 213 150 22 81 156 96 94 116 12 6 18 388 40 68 90 36 36 17 270 80 20 56 8 90 203 108 25 15 156 97 112 389 174 123 59 289 78 17 22 38 275 191 16 102 60 93 99 12 6 79 43 63 91 60 22 108 11 3 9 68 10 85 207 47 39 83 156 189 108 27 82 247 82 335 34 144 11 52 54 347 233 176 32 76 ...
result:
wrong answer 2nd numbers differ - expected: '45', found: '46'