哎,,,这一题就是个思路题,在这一题中 nuoyanli 能否赢,就看 他能不能 画一个圆占据中心位置,只要占了这个位置,就可 就可根据对称的性质,另一个玩家放哪, 在 对称位置就一定可以放置其他的 园
代码#include
#include
using namespace std;
#define ll long long
const int Len = 1e6 + 5;
int main()
{
ios::sync_with_stdio(false); cin.tie(0);
//freopen("T.txt","r",stdin);
int x,y,r;
while(cin >> x >> y >> r)
{
if(2 * r > x || 2 * r > y)
cout << "nuoyanli tcl!\n";
else
cout << "nuoyanli tql!\n";
}
return 0;
}