标签:lang sync rip int -- clu main efi desc
有两堆棋子,第一个人有n堆,第二个人有m堆,每人每次能选一堆拿任意多个,第一个人先拿,拿完赢,问第一个人是否能赢
每次都能拿完一堆,因此每次拿完整的一堆一定最优
#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main()
{
ios::sync_with_stdio(false);
int t;
cin >> t;
while (t--)
{
int n, m, a = 0, b = 0, t;
cin >> n >> m;
for (int i = 0; i < n + m; i++)
cin >> t;
cout << (n <= m ? "Yes" : "No") << endl;
}
}
[ICPC2018西安D] Deja vu of … Go Players - 博弈
标签:lang sync rip int -- clu main efi desc
原文地址:https://www.cnblogs.com/mollnn/p/14591217.html