码迷,mamicode.com
首页 > 其他好文 > 详细

UVA 12627 - Erratic Expansion

时间:2015-06-29 14:53:05      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:uva   算法竞赛入门经典   

一个红球可以分裂为3个红球和一个蓝球。
一个蓝球可以分裂为4个蓝球。

分裂过程下图所示:
技术分享

设当前状态为k1,下一状态为k2
k1的第x行红球个数 * 2 ? k2第2*x行的红球个数。
k1的第x行红球个数 ? k2第2*x+1行的红球个数。

特殊处理一下上下边界,递归求解就可以搞定了。

#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <algorithm>
#include <ctype.h>
#include <iostream>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <assert.h>
#include <time.h>
#include <sstream>

typedef long long LL;
const int INF = 500000001;
const double EPS = 1e-9;
const double PI = acos(-1.0);
using namespace std;
long long gao(int k, int a, int b)
{
    if(a > b) return 0;
    if(k == 0)
    {
        return 1;
    }
    int left = 0, right = 0;
    if(a % 2 == 0)
    {
        left = a;
        a++;
    }
    if(b % 2 == 1)
    {
        right = b;
        b--;
    }
    long long ans = gao(k-1, (a + 1) / 2, b / 2) * 2 + gao(k - 1, (a + 1) / 2, b / 2);
    if(left) ans += gao(k-1, left / 2,  left / 2);
    if(right) ans += gao(k-1, (right + 1) / 2,  (right + 1) / 2) * 2;
    return ans;
}
int main()
{
    #ifdef _Te3st
        freopen("test0.in", "r", stdin);
        freopen("test0.out", "w", stdout);
        srand(time(NULL));
    #endif
    int T, k, a, b;
    scanf("%d", &T);
    for(int i = 1; i <= T; i++)
    {
        scanf("%d %d %d", &k, &a, &b);
        printf("Case %d: %lld\n", i, gao(k, a, b));
    }
    return 0;
}

UVA 12627 - Erratic Expansion

标签:uva   算法竞赛入门经典   

原文地址:http://blog.csdn.net/free_way/article/details/46681749

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