http://www.bnuoj.com/bnuoj/problem_show.php?pid=4353
【题意】:每次选择一个小格后,该小格的右上部分就全被删去了,且要求每次至少删去一个格子,选中左下角格子的人算输。
【题解】:这个题嘛,这个题嘛,这个题嘛,还是看代码吧,不解释。。。
【code】:
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <algorithm> using namespace std; int main()
{
int t;
scanf("%d",&t);
while(t--)
{
int n,m;
scanf("%d%d",&n,&m);
if(n==&&m==)
{
puts("Alice");
}
else
{
puts("Bob");
}
}
return ;
}