QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#350331 | #7863. Parity Game | ushg8877 | WA | 0ms | 3680kb | C++14 | 1.5kb | 2024-03-10 17:19:37 | 2024-03-10 17:19:39 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define MP make_pair
const int MAXN=505;
mt19937 rnd(time(0));
int n,o,a[MAXN],oa[MAXN],on;
void oper(char c,int x){
if(c=='+') a[x]=a[x]^a[x+1];
else a[x]=a[x]&a[x+1];
for(int i=x+1;i<n;i++) a[x]=a[x+1];
n--;
}
void step(char c,int x,int o){
if(o) cout<<x<<' '<<c<<endl;
oper(c,x);
}
void oppe(){
char c;int x;
cin>>x>>c;
// c="*+"[rnd()&1],x=rnd()%(n-1)+1;
step(c,x,1);
}
void Stg(int t,int o=0){
// t=0 表示进攻
// t=1 表示防守
if(t==0){
for(int i=1;i<n;i++) if(a[i]&&a[i+1]) {step('+',i,o);return;}
for(int i=1;i<n;i++) if(a[i]^a[i+1]) {step('*',i,o);return;}
step('+',1,o);
}else{
for(int i=1;i<n;i++) if(!(a[i]&a[i+1])) {step('+',i,o);return;}
step('*',1,o);
}
}
int main(){
// freopen("Otomachi_Una.in","r",stdin);
// freopen("Otomachi_Una.out","w",stdout);
cin>>n>>o;
for(int i=1;i<=n;i++) cin>>a[i];
if((n&1)^(o==0)){
if(n&1) cout<<"Bob"<<endl;
else cout<<"Alice"<<endl,step('+',1,1);
while(n>=4) step('+',1,1),oppe();
step("*+"[a[1]==a[2]],1,1);
}else{
memcpy(oa,a,sizeof(a));on=n;
while(n>=2){
Stg(o);
if(n>=2) Stg(!o);
}
if(a[1]==o){
memcpy(a,oa,sizeof(oa));n=on;
cout<<"Alice"<<endl;
while(n>=2){
Stg(o,1);
if(n>=2) oppe();
}
}else{
memcpy(a,oa,sizeof(oa));n=on;
cout<<"Bob"<<endl;
while(n>=2){
oppe();
if(n>=2) Stg(!o,1);
}
}
}
// cout<<"Final: "<<a[1]<<'\n';
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3680kb
input:
4 1 0 1 0 1 1 * 0
output:
Alice 1 + 1 * 1 *
result:
wrong answer The interactor wins!