B进制星球(多进制 高精加)

https://www.luogu.org/problemnew/show/P1604

B(2<=B<=36)进制计数。编写实现B进制加法的程序。

输入输出格式

输入格式:

  共3行第1行:一个十进制的整数,表示进制B。第2-3行:每行一个B进制数正整数。数字的每一位属于{0,1,2,3,4,5,6,7,8,9,A,B……},每个数字长度<=2000位。

输出格式:

  一个B进制数,表示输入的两个数的和。

思路: 输入的时候把A~Z换成数字 存, 输出的时候把数字换成 A~Z 输出

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<algorithm>
 4 #include<cstring>
 5 #include<string>
 6 #include<cmath>
 7 #include<set>
 8 #include<vector>
 9 #include<stack>
10 #include<queue>
11 #include<map>
12 using namespace std;
13 #define ll long long
14 #define se second
15 #define fi first
16 const int INF= 0x3f3f3f3f;
17 const int N=4e6+5;
18
19 string s1,s2;
20 int n,len1,len2;
21 int  a[4005],b[4005];
22
23 int main()
24 {
25     cin>>n;
26     cin>>s1>>s2;
27     len1=s1.length();
28     len2=s2.length();
29
30     for(int i=1;i<=len1;i++)
31     {
32         if(s1[len1-i]>=‘A‘){
33             a[i]=s1[len1-i]-‘A‘+10;
34         }
35         else
36             a[i]=s1[len1-i]-‘0‘;
37     }
38     for(int i=1;i<=len2;i++)
39     {
40         if(s2[len2-i]>=‘A‘){
41             b[i]=s2[len2-i]-‘A‘+10;
42         }
43         else
44             b[i]=s2[len2-i]-‘0‘;
45     }
46
47     int len=max(len1,len2);
48     for(int i=1;i<=len;i++)
49     {
50         a[i+1] += (a[i]+b[i])/n;
51         a[i] =(a[i]+b[i])%n;
52     }
53     if(a[len+1]) len++;
54     for(int i=len;i>=1;i--)
55     {
56         if(a[i]>=10) printf("%c",a[i]-10+‘A‘);
57         else cout<<a[i];
58     }
59 }

原文地址:https://www.cnblogs.com/thunder-110/p/9290055.html

时间: 2024-10-05 05:04:58

B进制星球(多进制 高精加)的相关文章

c++普通高精加

//作为一名蒟蒻,还请诸位不要吐槽. //第一次打c++高精加,内心有点小激动. //为codevs3116 高精度练习之加法 //程序太简单,就不打注释了. #include<cstdio>#include<cstring>int main(){char s1[600],s2[600];int a1[600],a2[600],a3[600]={0},len1,len2,i;scanf("%s",s1);scanf("%s",s2);len1

HDOJ1002-A + B Problem II(高精加)

Problem Description I have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B. Input The first line of the input contains an integer T(1<=T<=20) which means the number of test cases. Then T lines fol

高精加

#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<queue> using namespace std; #define M 100000 char al[M],bl[M]; int a[M],b[M],c[M]; int longa,longb; void yawei() { int i,j,k=1; for( i=longa-1

高精加,高精乘单精

#include<cstdio> #include<cstring> #include<cstdlib> #include<iostream> #include<algorithm> #include<cmath> #include<queue> using namespace std; const int Max=1000; int Top=1,Mtop=0,add[Max]; int High(int a) { add

压位高精

压位高精:即通过将原来数组中一个位置存一位数,改为一个位置存p位数(8-10).本质上是一种利用进制转换思想的压缩方式. 压位高精VS普通高精优势: 1.节省空间.(10倍以上) 2.节省时间(循环次数少)(10倍) 3.在对于高精与低精(乘法不超int)运算时,可以利用进制较高的优势,达到简化代码量的目的.(不需要频繁进位) 例题:洛谷 P3223 组合数学+高精乘低精. #include<cstdio> #include<algorithm> #include<iostr

高精总结(未完结)

高精度是一种计算方式,如果数据过大,会爆掉longlong,就需要用数组来模拟每一位,进行加减乘除,模拟进退位. 用高精时,要将个位赋值在数组第一个,输出时反向输出,不要弄反,不然会紊乱: 高精加 多考虑进位,这是重点: #include<iostream> #include<cstring> using namespace std; int x=0,a1[241],a2[241],b[241],o; string s1,s2; void ax() { cin>>s1&

模板——高精系列

存放一下高精的模板 高精加: #include<iostream> #include<cstdlib> #include<cstdio> #include<cstring> using namespace std; int a[1001],b[1001],c[1001],lena,lenb; char a1[1001],b1[1001]; int main(){ gets(a1); gets(b1); lena=strlen(a1); lenb=strlen

洛谷 P1604 B进制星球 高精度多进制加法

P1604 B进制星球 时空限制1s / 128MB 题目背景 进制题目,而且还是个计算器~~ 题目描述 话说有一天,小Z乘坐宇宙飞船,飞到一个美丽的星球.因为历史的原因,科技在这个美丽的星球上并不很发达,星球上人们普遍采用B(2<=B<=36)进制计数.星球上的人们用美味的食物招待了小Z,作为回报,小Z希望送一个能够完成B进制加法的计算器给他们. 现在小Z希望你可以帮助他,编写实现B进制加法的程序. 输入输出格式 输入格式: 共3行第1行:一个十进制的整数,表示进制B.第2-3行:每行一个B

洛谷——P1604 B进制星球

P1604 B进制星球 题目背景 进制题目,而且还是个计算器~~ 题目描述 话说有一天,小Z乘坐宇宙飞船,飞到一个美丽的星球.因为历史的原因,科技在这个美丽的星球上并不很发达,星球上人们普遍采用B(2<=B<=36)进制计数.星球上的人们用美味的食物招待了小Z,作为回报,小Z希望送一个能够完成B进制加法的计算器给他们. 现在小Z希望你可以帮助他,编写实现B进制加法的程序. 输入输出格式 输入格式: 共3行第1行:一个十进制的整数,表示进制B.第2-3行:每行一个B进制数正整数.数字的每一位属于