UVA - 12333 字典树+大数
思路:用字典树将前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 字典树+大数的更多相关文章
- UVA - 11488 字典树
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem ...
- hdu 4099 Revenge of Fibonacci 字典树+大数
将斐波那契的前100000个,每个的前40位都插入到字典树里(其他位数删掉),然后直接查询字典树就行. 此题坑点在于 1.字典树的深度不能太大,事实上,超过40在hdu就会MLE…… 2.若大数加法时 ...
- UVa 12333 Revenge of Fibonacci (字典树+大数)
题意:给定一个长度小于40的序列,问你那是Fib数列的哪一项的前缀. 析:首先用大数把Fib数列的前100000-1项算出来,注意,一定不能是100000,要不然会WA的,然后每个数取前40位,不足4 ...
- UVA - 12333 Revenge of Fibonacci 高精度加法 + 字典树
题目:给定一个长度为40的数字,问其是否在前100000项fibonacci数的前缀 因为是前缀,容易想到字典树,同时因为数字的长度只有40,所以我们只要把fib数的前40位加入字典树即可.这里主要讨 ...
- UVa 12333 - Revenge of Fibonacci manweifc(模拟加法竖式 & 字典树)
题意: 给定n个(n<=40)数字, 求100000个以内有没有前面n个数字符合给定的数字的fibonacci项, 如果有, 给出最小的fibonacci项, 如果没有, 输出-1. 分析: 可 ...
- UVA 11732 strcmp() Anyone? (压缩版字典树)
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem ...
- UVA 11488 Hyper Prefix Sets (字典树)
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem ...
- UVA Phone List (字典树)(查询是否有前缀或自身是其他的前缀)
Phone List Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 16341 Accepted: 5228 Descr ...
- uva 11488 - Hyper Prefix Sets(字典树)
H Hyper Prefix Sets Prefix goodness of a set string is length of longest common prefix*number of str ...
随机推荐
- python_16_序列化
如何实现不同编程语言进行交互? json数据,相当于语言中间的沟通桥梁 什么是json数据? imoprt json json.dumps(内容) --把内容转换 ...
- OpenCv函数学习(一)
Intel Image Processing Library (IPL) typedef struct _IplImage { int nSize; /* IplImage大小 */ int ID; ...
- linkin大话面向对象--java关键字
java中的关键字有以下几个,他们不能作任何其它的用途. 发现没,java中的关键字全是小写,java是严格区分大小写的. abstract default null synchronized ...
- Git Batch命令(转)
echo 和 @ 回显命令 @ #关闭单行回显 echo off #从下一行开始关闭回显 @echo off #从本行开始关闭回显.一般批处理第一行都是这个 echo on #从下一行开始打开回显 e ...
- cache.config文件配置模板
# # cache.config # # The purpose of this file is to alter caching parameters of # specific objects o ...
- jmeter用Firefox录制https协议证书问题解决
录制脚本的时候,比如录制https协议的百度网站 https://www.baidu.com ,所有录制设置均正常,但是在jmeter录制控制器里面就是没有任何录制的请求. 这个时候提示说证书不对 1 ...
- vc++调用web服务传输文件
bool webService::UploadFile(LPWSTR appKey, LPWSTR fileName, const int len, unsigned char * buff) { t ...
- 《收藏》对servlet原理讲解特别详细
转载:http://blog.csdn.net/javaloveiphone/article/details/8154791 内容: 一.先从servlet容器说起:大家最为熟悉的servlet容器就 ...
- iOS UITableView左滑操作功能的实现(iOS8-11)
WeTest 导读 本文主要是介绍下iOS 11系统及iOS 11之前的系统在实现左滑操作功能上的区别,及如何自定义左滑的标题颜色.字体大小. 一.左滑操作功能实现 1.如果左滑的时候只有一个操作按钮 ...
- JAVA 调用 R 语言之升华篇
由于项目的需要,最近做了一个javaWeb调用R的组件,在这里,我把自己走的一些弯路给大家总结一下: 一.选取什么插件作为java和R之间的通信? 1. 在传统的方式中,大致可以分为两类:一类是JRI ...