比赛 2025.2.25 评测结果 AAAAWWWWWWWWWWWWWWWW
题目名称 过河卒 最终得分 20
用户昵称 flyfreem 运行时间 0.077 s
代码语言 C++ 内存使用 3.33 MiB
提交时间 2025-02-25 09:21:26
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
#define ll long long
// By flyfreemrn
inline ll read(){
	ll x=0,f=1;
	char c=getchar();
	while(c<'0'||c>'9'){
		if(c=='-')f=-1;
		c=getchar();
	}
	while(c>='0'&&c<='9'){
		x=x*10+c-'0';
		c=getchar();
	}
	return x*f;
}
inline void write(ll x){
	if(x>9)write(x/10);
	putchar(x%10+'0');
}
ll addx[4]={0,-1,0,1},addy[4]={1,0,-1,0};
ll T,type;
ll n,m;
char s[15][15];
ll posx[5],posy[5];
bool movable(ll x,ll y,ll ch){
	bool res=false;
	for(int i=0;i<4;i++){
		ll xz=x+addx[i],yz=y+addy[i];
		if(xz<1||yz<1||xz>n||yz>m||s[xz][yz]=='#')continue;
		if(((xz==posx[1]&&yz==posy[1])||(xz==posx[2]&&yz==posy[2])))continue;
		res=true;
	}
	return res;
}
void work(){
	cin>>n>>m;
	posx[1]=posx[2]=posx[0]=0;
	posy[1]=posy[2]=posy[0]=0;
	for(int i=1;i<=n;i++){
		for(int j=1;j<=m;j++){
			cin>>s[i][j];
			if(s[i][j]=='X')posx[0]=i,posy[0]=j;
			else if(s[i][j]=='O'){
				if(posx[1]||posy[1])posx[2]=i,posy[2]=j;
				else posx[1]=i,posy[1]=j;
			}
		}
	}
	if(type>=1&&type<=4){
		if(movable(posx[1],posy[1],1)||movable(posx[2],posy[2],1))cout<<"Tie\n";
		else cout<<"Black 0\n";
	}
	return;	
}
int main(){
	freopen("zu.in","r",stdin);
	freopen("zu.out","w",stdout);
	type=read(),T=read();
	while(T--)work();
	return 0;
}