大数
文章平均质量分 81
my1995
不要小看一点一滴。。。
今天的我,明天的你
展开
-
hdu1865大数 1sting
分析: 简单递推+大数。 ans[n]=ans[n-1]+ans[n-2]。 由于数字只有'1'和'2'这两种,那么当让第n 位为1的时候,ans[n]加上ans[n-1];当让最后两位 合并成2的时候,ans[n]加上ans[n-2](因为要保证 倒数第二位一定是1)。 算出来的ans就是一个斐波那契数列。原创 2014-07-15 21:01:07 · 367 阅读 · 0 评论 -
hdu1865值得一看
http://acm.hdu.edu.cn/showproblem.php?pid=1865 #include #include #include using namespace std; const int N=205; int a[N][N]; char s[N]; int main() { int T; cin>>T; while(T-原创 2014-07-15 12:21:24 · 345 阅读 · 0 评论 -
大数相加 hdu1002
http://acm.hdu.edu.cn/status.php?user=1870757005&pid=1002&status=5 #include #include int main() { int t,n,m,k,i,c,h=1; char s1[1005],s2[1005]; int a[1005],b[1005],p=0; scanf原创 2014-07-15 11:30:14 · 409 阅读 · 0 评论