摘要:
2014-06-0120:00:48题意 & 思路:大数加,不废话。#include #include #include #include using namespace std;const int maxn = 1000;struct bign{ int len,s[maxn + 5]; ... 阅读全文
摘要:
2014-06-0118:03:30题意 & 思路:大数乘,这里采用的小白书里的bign结构体#include #include #include #include using namespace std;const int maxn = 1000;struct bign{ int len,s... 阅读全文
摘要:
首先要说明的是ACM题目中涉及的基本是初级高精度,直接模拟手算一般不会超时(也可用java),关于高精度的研究还有很多,介绍一个Huge cal库:http://www.emath.ac.cn/hugecalc/关于字符串,主要增加一些acm入门知识。以分知识点的形式给出:1:scanf %c 有其... 阅读全文
摘要:
引用:http://blog.csdn.net/chhuach2005/article/details/21168179具体我就不转了,大数乘法一般直接模拟手算,至于分治法、FFT算法、傅里叶高效算法......除非效率有要求、数据很大才会用到。 阅读全文
摘要:
2014-06-0100:08:41题意 & 思路:循环匹配、替换字符串。呵呵,又是一道典型的字符串处理,scanf %c A之,一开始理解为按单词匹配,后在才发现不是这样(fs : ba g rs : hind the g)。#include #include #include using nam... 阅读全文