思路:用字典树将前40个数字记录下来,模拟大数加法即可。

AC代码

#include <cstdio>
#include <cmath>
#include <algorithm>
#include <cstring>
#include <utility>
#include <string>
#include <iostream>
#include <map>
#include <set>
#include <vector>
#include <queue>
#include <stack>
using namespace std;
#pragma comment(linker, "/STACK:1024000000,1024000000")
#define eps 1e-10
#define inf 0x3f3f3f3f
#define PI pair<int, int>
typedef long long LL;
const int maxn = 10;
struct Node{
	int num;
	Node *next[maxn];
	Node(){
		num = -1;
		for(int i = 0; i < maxn; i++) {
			next[i] = NULL;
		}
	}
}*root;
void init() {
	root = new Node();
}
void insert(int *a, int n, int num) {
	n = min(n, 40);
	Node *p = root, *q;
	for(int i = 0; i < n; ++i) {
		int x = a[i];
		if(p->next[x] == NULL) {
			q = new Node();
			q->num = num;
			p->next[x] = q;
		}
		p = p->next[x];
	}
}

int find(char *a) {
	Node *p = root;
	int n = strlen(a);
	for(int i = 0; i < n; ++i) {
		int x = a[i] - '0';
		if(p->next[x] == NULL) return -1;
		p = p->next[x];
	}
	return p->num;
} 

//高精度加法
const int Base =  100000000;
int a[2][20000+5], val[100];
int f = 0, h = 1;
stack<int>sta;
void Deal() {
	memset(a, 0, sizeof(a));
	a[0][0] = 1, a[1][0] = 1;
	val[0] = 1;
	int len[2] = {1,1};
	insert(val, 1, 0);
	for(int i = 2; i < 100000; ++i) {
		int g = 0;
		for(int j = 0; j < len[f] || j < len[h] || g > 0; ++j) {
			int x = a[f][j] + a[h][j] + g;
			a[f][j] = x % Base;
			g = x / Base;
			len[f] = max(len[f], j+1);
		}
		int cur = 0;
		for(int j = len[f]-1; j >= 0; --j) {
			if(cur >= 40) break;
			int x = a[f][j];
			if(j == len[f] - 1) {
				while(x) {
					sta.push(x % 10);
					x /= 10;
				}
			}
			else {
				int u = 0, t = x;
				while(t) {
					++u;
					t /= 10;
				}
				while(x) {
					sta.push(x % 10);
					x /= 10;
				}
				for(int k = 0; k < 8 - u; ++k) {
					sta.push(0);
				}
			}
			while(!sta.empty()) {
				val[cur++] = sta.top();
				sta.pop();
			}
		}
		//insert
		insert(val, cur, i);
		f = 1 - f;
		h = 1 - h;
	}
}

int main() {
	init();
	Deal();
	int T, kase = 1;
	scanf("%d", &T);
	char s[50];
	while(T--) {
		scanf("%s", s);
		printf("Case #%d: %d\n", kase++, find(s));
	}
	return 0;
} 

如有不当之处欢迎指出!

UVA - 12333 字典树+大数的更多相关文章

  1. UVA - 11488 字典树

    题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem ...

  2. hdu 4099 Revenge of Fibonacci 字典树+大数

    将斐波那契的前100000个,每个的前40位都插入到字典树里(其他位数删掉),然后直接查询字典树就行. 此题坑点在于 1.字典树的深度不能太大,事实上,超过40在hdu就会MLE…… 2.若大数加法时 ...

  3. UVa 12333 Revenge of Fibonacci (字典树+大数)

    题意:给定一个长度小于40的序列,问你那是Fib数列的哪一项的前缀. 析:首先用大数把Fib数列的前100000-1项算出来,注意,一定不能是100000,要不然会WA的,然后每个数取前40位,不足4 ...

  4. UVA - 12333 Revenge of Fibonacci 高精度加法 + 字典树

    题目:给定一个长度为40的数字,问其是否在前100000项fibonacci数的前缀 因为是前缀,容易想到字典树,同时因为数字的长度只有40,所以我们只要把fib数的前40位加入字典树即可.这里主要讨 ...

  5. UVa 12333 - Revenge of Fibonacci manweifc(模拟加法竖式 & 字典树)

    题意: 给定n个(n<=40)数字, 求100000个以内有没有前面n个数字符合给定的数字的fibonacci项, 如果有, 给出最小的fibonacci项, 如果没有, 输出-1. 分析: 可 ...

  6. UVA 11732 strcmp() Anyone? (压缩版字典树)

    题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem ...

  7. UVA 11488 Hyper Prefix Sets (字典树)

    题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem ...

  8. UVA Phone List (字典树)(查询是否有前缀或自身是其他的前缀)

    Phone List Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 16341   Accepted: 5228 Descr ...

  9. uva 11488 - Hyper Prefix Sets(字典树)

    H Hyper Prefix Sets Prefix goodness of a set string is length of longest common prefix*number of str ...

随机推荐

  1. JAVA中正则表达式常用的四个方法

    JAVA中正则表达式处理字符串的四个常用方法:匹配.分割.替换.截取.其跟字符串的常用函数相似,但是使用正则表达式会更简单.更加简洁.下面是具体的例子: public class TestRegex ...

  2. IO (四)

    1 深度遍历文件夹 示例: package java20; import java.io.File; import java.io.FilenameFilter; import java.text.S ...

  3. curl错误码说明

    1.得到错误码 $errno=curl_errno($ch); if($errno!=0){ -- } 2.错误码说明 <?php return [ '1'=>'CURLE_UNSUPPO ...

  4. lvs_dr

    lvs_dr 实验需求(4台虚拟机) eth0 192.168.1.110 单网卡 client(可以使用windows浏览器代替,但会有缓存影响) eth0 192.168.1.186 单网卡 di ...

  5. 【转】ArcGIS中File Geodatabase与Personal Geodatabase的区别

    原文地址:ArcGIS中File Geodatabase与Personal Geodatabase的区别作者:最爱忆宝贝 一.平台支援: 1.Personal Geodatabase:仅可在Windo ...

  6. 浅谈TreeMap以及在java中的使用

    treemap结构是红黑树 1.先介绍一下平衡二叉树 其特点是一棵空树或它的左右两个子树的高度差的绝对值不超过1,并且左右两个子树都是一棵平衡二叉树.也就是说该二叉树的任何一个子节点,其左右子树的高度 ...

  7. jquery +/-小样式

    <script>部分 var num = 0; $(document).on('click','#add',function(){ _this = $(this); div = _this ...

  8. mongodb查询操作分析

    背景 mongodb 提供了类sql的数据查询及操作方式,同时也包含了聚合操作.索引等多个机制: 按以往的经验,不当的库表操作或索引模式往往会造成许多问题,如查询操作缓慢.数据库吞吐量低下.CPU或磁 ...

  9. poj2479 最大子段和

    题意:给定一个数列.求出数列中不相交的两个子段和,要求和最大 解题思路:对每一个i来说,求出[0-i-1]的最大子段和以及[i-n-1]的最大子段和,再加起来,求出最大的一个.[0-i-1]的最大子段 ...

  10. Directx3d绘制包围体并控制光照效果

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; usin ...