广东省赛补题_G
B分2相当于自杀,B分一个2(1,1),A就拿一个1,B把2拿没了,A伴随着B的愚蠢行为获胜了。
博弈论的游戏观察能否一个伴随一个走,如果一个伴随一个走,那么一个就必死
#include<bits/stdc++.h>
#define ll long long
using namespace std;
int n;
ll cnta,cntb;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0),cout.tie(0);
int t;
cin>>t;
while(t--)
{
cnta=0;
cntb=0;
cin>>n;
ll x;
for(int i=1;i<=n;i++)
{
cin>>x;
if(x%2)
{
cnta+=x/2+1;
}
else
{
cntb+=x/2;
cntb--;
}
}
if(cnta>cntb) puts("Alice");
else puts("Bob");
}
return 0;
}