题意:两个人在一块矩形的桌子上放直径为d圆,谁不能放谁就输。对于确定的矩形长宽,圆半径r。要求判断谁赢谁输。

/*If I get TLE , it is good.If I get AC,it's NICE !*/
#include <stdio.h>
#include <iostream>
#include <algorithm>
#include <string.h>
#include <vector>
#include <cmath>
#include <queue>
#include <string>
#include <map>
using namespace std;
typedef long long ll;
const int INF=2147483647;
const int MAXN=1e5+10;
const ll mod=1e9+7;
using namespace std;
typedef long long ll;
int main(void)
{
    int a ,b ,r;
    scanf("%d%d%d",&a,&b,&r);
    int d=2*r;
    if(d<=a && d<=b )
        printf("First\n");
    else
        printf("Second\n");
}

//这题比赛的时候,有考虑到这个情况,但没有往下想。这道题是第一题,首先应该考虑第一题应该会比较简单,而且是博弈,肯定是最容易的博弈题。

理解
如果 , 我先手在能放下的情况下,我放矩形的中间,那么接下来对称放最后肯定能赢。

通过这道题,WHAT I GET?
1.博弈论的题 ,以我现在的实力顶多靠猜。
2.既然是第一题,就大胆点猜,不会太难,只要满足一般的数据。
3. 差距很明显,仍需努力