码迷,mamicode.com
首页 > 其他好文 > 详细

HDU-1042.N!(乘法模拟)

时间:2019-03-09 20:19:26      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:img   情况下   \n   iostream   并且   iso   printf   span   play   

  本题大意:给定一个10000以内的整数n,让你求出n!并输出。

  本题思路:先初始化一个存放答案的数组ans,初始ans[0] = 1,并初始化其剩下的元素为0,接着就从2开始依次与ans数组内的每一个数相乘,具体乘法过程见代码,需要注意的就是求divisor时自身此时的值也是需要加上的,还有就是注意当存在余数并且当前位数已经不够用的情况下才将总位数加一否则不加,答案里会出现很多前导零。

  

技术图片
 1 #include <cstdio>
 2 #include <iostream>
 3 #include <cstring>
 4 using namespace std;
 5 
 6 const int maxn = 2e5 + 5;
 7 int n, tot, now, divisor, t;
 8 int ans[maxn];
 9 
10 int main () {
11     while(~scanf("%d", &n)) {
12         memset(ans, 0, sizeof(ans));
13         ans[0] = 1, tot = 1;
14         for(int i = 2; i <= n; i ++) {
15             divisor = 0, now = 0;
16             while(now < tot) {
17                 t = ans[now] * i + divisor;
18                 ans[now ++] = t % 10;
19                 divisor = t / 10;
20                 if(divisor && now == tot) tot ++;
21             }
22         }
23         for(int i = tot - 1; i >= 0; i --)
24             printf("%d", ans[i]);
25         printf("\n");
26     }
27     return 0;
28 }
View Code

 

HDU-1042.N!(乘法模拟)

标签:img   情况下   \n   iostream   并且   iso   printf   span   play   

原文地址:https://www.cnblogs.com/bianjunting/p/10502734.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!