#include using namespace std; int main(){ int t; cin>>t; while(t--){ int n; cin>>n; vector a(n); for(auto &&v:a)cin>>v; if(n%2==1){ cout<<"Alice\n"; continue; } sort(a.begin(),a.end()); bool win=false; for(int i=0;i