UDP广播协议叫吃饭


私信TA

用户名:Mustenaka

访问量:136255

签 名:

个人博客www.mustenaka.cn

等  级
排  名 12
经  验 23883
参赛次数 8
文章发表 197
年  龄 3
在职情况 学生
学  校 Sky_box
专  业 NE

  自我简介:

欢迎光临我的博客www.mustenaka.cn,Python,C#,U3D,C/C++开发合作可以找我

解题思路:
    参考了一下别的同学的代码,发现单开一个数组的容易在位数判断上面出问题,开双数组比较保险,同时,short以10进位不可取(爆内存),int也是,long long的化开高位可以达到效果,然而开了的话就需要一些固定输出位的操作,否则会少0.


参考代码:

#include<bits/stdc++.h>
#define hh ios::sync_with_stdio(false),cin.tie(0);
using namespace std;
typedef unsigned long long ull;
const int maxn=1e6+5;
const ull Yasuo=10000000000000000;
const int bit=16;
ull a[maxn],b[maxn];
ull n,pos=0;

int main() {
	hh;
	cin>>n;
	a[0]=1;
	for(int i=1; i<=n; i++) {
		memset(b,0,sizeof(b));
		for(int j=0; j<=pos; j++) {
			b[j]+=a[j]*i;
			if(b[j]>=Yasuo) {
				pos++;
			}
			b[j+1]=b[j]/Yasuo;
			b[j]%=Yasuo;
		}
		while(!b[pos]) pos--;

		for(int j=0; j<=pos; j++) {
			a[j]=b[j];
		}
	}
	for (int j = pos; j >= 0; j--) {
		if (j == pos)
			cout << a[j];
		else
			cout << setw(bit) << setfill('0') << a[j];
	}
	cout<<endl;
	return 0;
}


 

0.0分

0 人评分

看不懂代码?想转换其他语言的代码? 或者想问其他问题? 试试问问AI编程助手,随时响应你的问题:

编程语言转换

万能编程问答  

代码解释器

代码纠错

SQL生成与解释

  评论区