码迷,mamicode.com
首页 > 系统相关 > 详细

sgu287:Amusing Qc Machine(DP)

时间:2015-07-18 15:37:12      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:dp

题目大意:
      有一个游戏是在一个区间[1,n]中找到一个整数 x。你在每一轮可以说出一个数 y,机器会告诉你 y  x 的大小关系。为了提高游戏难度,机器会延迟 k 轮告诉你这一轮的结果。当机器说结果相等的时候游戏结束。现在给你 n,k ,求出在最坏情况下结束游戏所需的最少轮数。
      1n1015,0k106

分析:
      推荐先去看看 POJ3783 硬蛋那道题,和这道题有异曲同工之妙。
       fi 表示 i 轮游戏能确定的最大区间。
      那么很明显有 fi=fi?k?1+fi?1+1 ,再把数组循环一下就好了。

AC code:

#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <algorithm>
#include <string>
#include <sstream>
#include <iostream>
#include <map>
#include <set>
#include <list>
#include <stack>
#include <queue>
#include <vector>
#define pb push_back
#define mp make_pair
#define rep(i, a, b) for(int i = a; i <= b; ++i)
#define clr(x, y) memset(x, y, sizeof x)
#define mod(a, b) ((a)<(b)?(a):((a)-(b)))
typedef long long LL;
typedef double DB;
typedef long double LD;
using namespace std;

const int MAXC = 1e6+9;

LL q;
int c;
LL f[MAXC];
LL ans;

void open_init()
{
    #ifndef ONLINE_JUDGE
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
    #endif
    ios::sync_with_stdio(0);
}

void close_file()
{
    #ifndef ONLINE_JUDGE
    fclose(stdin);
    fclose(stdout);
    #endif
}

int main()
{
    open_init();

    cin >> q >> c;
    int cnt = 0;
    while(f[mod(cnt, c+1)] < q)
        f[mod(cnt, c+1)] = f[mod(cnt, c+1)]+f[mod(cnt+c, c+1)]+1, 
        cnt = mod(cnt+1, c+1), ans++;
    cout << ans << endl;

    close_file();
    return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

sgu287:Amusing Qc Machine(DP)

标签:dp

原文地址:http://blog.csdn.net/qq_20118433/article/details/46942623

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!