UVa 10120 - Gift?! (数学)

思路

据说n>=49一定能到。我就信了

代码

#include <cstdio>
#include <stack>
#include <set>
#include <iostream>
#include <string>
#include <vector>
#include <queue>
#include <functional>
#include <cstring>
#include <algorithm>
#include <cctype>
#include <string>
#include <map>
#include <iomanip>
#include <cmath>
#define LL long long
#define ULL unsigned long long
#define SZ(x) (int)x.size()
#define Lowbit(x) ((x) & (-x))
#define MP(a, b) make_pair(a, b)
#define MS(arr, num) memset(arr, num, sizeof(arr))
#define PB push_back
#define F first
#define S second
#define ROP freopen("input.txt", "r", stdin);
#define MID(a, b) (a + ((b - a) >> 1))
#define LC rt << 1, l, mid
#define RC rt << 1|1, mid + 1, r
#define LRT rt << 1
#define RRT rt << 1|1
#define BitCount(x) __builtin_popcount(x)
#define BitCountll(x) __builtin_popcountll(x)
#define LeftPos(x) 32 - __builtin_clz(x) - 1
#define LeftPosll(x) 64 - __builtin_clzll(x) - 1
const double PI = acos(-1.0);
const int INF = 0x3f3f3f3f;
using namespace std;
const double eps = 1e-8;
const int MAXN = 10000 + 10;
const int MOD = 1000007;
const int dir[][2] = { {-1, 0}, {1, 0}, {0, -1}, {0, 1} };
typedef pair<int, int> pii;
typedef vector<int>::iterator viti;
typedef vector<pii>::iterator vitii;
 
int len, pos;
 
bool DFS(int curDis, int cnt)
{
    if (curDis == pos) return true;
    int step = (cnt << 1) - 1;
    if (curDis + step <= len)
        if (DFS(curDis + step, cnt + 1)) return true;
    if (curDis - step > 0)
        if (DFS(curDis - step, cnt + 1)) return true;
    return false;
}
 
int main()
{
    //ROP;
    int i, j;
    while (scanf("%d%d", &len, &pos), len + pos)
    {
        if (len >= 49)
        {
            puts("Let me try!");
            continue;
        }
        if (DFS(1, 2)) puts("Let me try!");
        else puts("Don't make fun of me!");
    }
    return 0;
}

Powered by Jekyll and Theme by solid