【Codeforces Round 328 (Div 2)A】【水题】PawnChess 棋子向上向下走

#include<stdio.h>
#include<string.h>
#include<ctype.h>
#include<math.h>
#include<iostream>
#include<string>
#include<set>
#include<map>
#include<vector>
#include<queue>
#include<bitset>
#include<algorithm>
#include<time.h>
using namespace std;
void fre(){freopen("c://test//input.in","r",stdin);freopen("c://test//output.out","w",stdout);}
#define MS(x,y) memset(x,y,sizeof(x))
#define MC(x,y) memcpy(x,y,sizeof(x))
#define MP(x,y) make_pair(x,y)
#define ls o<<1
#define rs o<<1|1
typedef long long LL;
typedef unsigned long long UL;
typedef unsigned int UI;
template <class T1,class T2>inline void gmax(T1 &a,T2 b){if(b>a)a=b;}
template <class T1,class T2>inline void gmin(T1 &a,T2 b){if(b<a)a=b;}
const int N=0,M=0,Z=1e9+7,ms63=1061109567;
int casenum,casei;
char a[10][10];
int main()
{
	int ans1=1e9;
	int ans2=1e9;
	for(int i=1;i<=8;i++)scanf("%s",a[i]+1);
	for(int i=1;i<=8;i++)
	{
		for(int j=1;j<=8;j++)
		{
			if(a[i][j]=='W')
			{
				int k;
				for(k=i-1;k>=1;k--)if(a[k][j]!='.')break;
				if(k==0)gmin(ans1,i-1);
			}
			else if(a[i][j]=='B')
			{
				int k;
				for(k=i+1;k<=8;k++)if(a[k][j]!='.')break;
				if(k==9)gmin(ans2,8-i);
			}
		}
	}
	puts(ans1<=ans2?"A":"B");
	return 0;
}
/*
【题意】
给你一个8*8的棋盘。
有两方棋子——'W'和'B',
对于棋子
W:每次只能在正上方无棋子时向上走,一旦有一个W走到第一行就获胜
B:每次只能在正下方无棋子时向下走,一旦有一个B走到最后一行就获胜
W先手,问你哪方获胜。(注意一定存在必胜方)

【类型】
模拟

【分析】
直接枚举W,暴力看看能否走到第一行
然后枚举B,暴力看看能否走到最后一行
同时更新两方的最小获胜步数

【时间复杂度&&优化】
O(8^3)

*/


你可能感兴趣的:(ACM,ICPC,codeforces,cf328)