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

Uva - 12627 - Erratic Expansion

时间:2015-06-22 11:08:22      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:acm   uva   oj   

技术分享

技术分享

找到递推公式,题目就引刃而解了。数学公式博文没办法写,就写在了word上,切过来了:

技术分享技术分享

用 f 或者 g 都能求出,我两个方法都试了,结果用 g 要比 f 快了近一倍,原本以为 f 会快些,可能是因为往上走红气球天多的缘故。

AC代码:

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cctype>
#include <cstring>
#include <string>
#include <sstream>
#include <vector>
#include <set>
#include <map>
#include <algorithm>
#include <stack>
#include <queue>
#include <bitset> 
#include <cassert> 
#include <cmath>
#include <functional>

using namespace std;

long long c(int k)
{
	return k == 0 ? 1 : c(k - 1) * 3;
}

long long f(int k, int i)
{
	if (i == 0) {
		return 0;
	}
	if (k == 0) {
		return 1;
	}

	int k2 = 1 << (k - 1); // 2的k-1次方
	if (i >= k2) {
		return f(k - 1, i - k2) + c(k - 1) * 2;
	}
	else {
		return f(k - 1, i) * 2;
	}
}

long long g(int k, int i)
{
	if (i == 0) {
		return 0;
	}
	if (k == 0) {
		return 1;
	}

	int k2 = 1 << (k - 1); // 2的k-1次方
	if (i >= k2) {
		return 2 * g(k - 1, i - k2) + c(k - 1);
	}
	else {
		return g(k - 1, i);
	}
}

int main()
{
	ios::sync_with_stdio(false);
	int T;
	cin >> T;
	int kase = 0;
	while (T--) {
		int k, a, b;
		cin >> k >> a >> b;
		cout << "Case " << ++kase << ": ";
		//cout << f(k, b) - f(k, a - 1) << endl;
		cout << g(k, (1 << k) - a + 1) - g(k, (1 << k) - b) << endl;
	}

	return 0;
}




Uva - 12627 - Erratic Expansion

标签:acm   uva   oj   

原文地址:http://blog.csdn.net/zyq522376829/article/details/46591661

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