#include <bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int a,b,r;
cin>>a>>b>>r;
int x = min(a,b);
if(2*r<=x)cout<<"Alice"<<'\n';
else cout<<"Bob"<<'\n';
return 0;
}
利用对称性摆放,Alicei第一次放中心,Bob若能放,则Alice放与之对称的位置,Bob必输,若Alice第一次都放不了,则Bob赢

京公网安备 11010502036488号