[Ec Final 2018] Deja vu of … Go Players

题目:

QAQ…

题目分析:

每次都能拿完一堆,先手的堆数多余后手就输了,否则后手输了

题目链接:

题目分析

AC代码:

#include 
#include 
int n,m;
int main()
{
	int t;
	scanf("%d",&t);
	while(t--)
	{
		scanf("%d%d",&n,&m);
		for(int i=1,x;i<=n;i++) scanf("%d",&x);
		for(int i=1,x;i<=m;i++) scanf("%d",&x);
		if(n>m) puts("No");
		else puts("Yes");
	}
	return 0;
} 

你可能感兴趣的:(题目分析)