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 ...
随机推荐
- 如何修改nexus的端口号
1. Maven仓库:放置所有JAR文件(WAR,ZIP,POM等等)的地方,所有Maven项目可以从同一个Maven仓库中获取自己所需要的依赖JAR,这节省了磁盘资源. 简言之,Maven仓库能帮助 ...
- Markdown中使用mermaid画流程图
Markown语法简单,用来写文档是个不错的选择. 但是Markdown 语法并不直接支持画图,当然方法还是有的. 本人用的Markdown编辑器为vscode,在里面直接安装merdaid插件即可使 ...
- 2018-02-02-解决IDE中无法忽略的非代码文件
layout: post title: 2018-02-02-解决IDE中无法忽略的非代码文件 key: 20180202 tags: GIT 版本管理 modify_date: 2018-02-02 ...
- shell获取字符串长度
方法1: 使用wc -L命令 wc -L可以获取到当前行的长度,因此对于单独行的字符串可以用这个简单的方法获取,另外wc -l则是获取当前字符串内容的行数. 代码如下: echo "abc& ...
- 关于int main( int argc, char *argv[] )
int main(int argc, char *argv[], char *env[]) 1. int argc 表示你在命令行下输入命令的时候,一共有多少个参数. 2. char *argv[] ...
- c# 类属性和方法
属性 public 类字段 就相当于c#里面暴露给外面的属性 类似nodejs的 module.exports 但是属性又不同于普通的字段,属性只是外部包装字段 没有自己的任何含量 类似退换后的方法. ...
- Python字典(dict)使用技巧
字典dict是Python中使用频率非常高的数据结构,关于它的使用,也有许多的小技巧,掌握这些小技巧会让你高效地的使用dict,也会让你的代码更简洁. 1.默认值 假设name_for_userid存 ...
- iOS-状态栏字体颜色【白色】【Xcode9.1】
Xcode9之前 设置状态栏颜色首先在info.plist文件中,加入UIViewControllerBasedStatusBarAppearance = false: <key>UIVi ...
- Python基础篇(六)
retun空值,后面的语句将不再被执行 >>> def test(): ... print("just a test!") ... return .. ...
- 51NOD 1238 最小公倍数之和 V3 [杜教筛]
1238 最小公倍数之和 V3 三种做法!!! 见学习笔记,这里只贴代码 #include <iostream> #include <cstdio> #include < ...