QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#492143 | #4912. WereYouLast | CrazyFungi | Compile Error | / | / | C++14 | 539b | 2024-07-26 09:50:32 | 2024-07-26 09:50:39 |
Judging History
answer
bool query(int);
void modify(int,bool);
bool WereYouLast(int n,int m){
int p[6];
for(int i=1;i<=5;++i) p[i]=query(i);
int z=0;
for(int i=1;i<=5;++i) z|=p[i]<<5-i;
if(z==__lg(n)) return 1;
if(query(z+5)){
modify(z+5,0);
for(int i=1;i<=5;++i) modify(i,0);
}
else{
modify(z+5,1);
for(int i=5;i>=1;--i){
if(!p[i]){
modify(i,1);
break;
}
else modify(i,0);
}
}
return 0;
}
详细
answer.code: In function ‘bool WereYouLast(int, int)’: answer.code:9:11: error: ‘__lg’ was not declared in this scope 9 | if(z==__lg(n)) return 1; | ^~~~