【Luogu2142】【模板】高精度减法
【摘要】
problem
solution
codes
//高精减法
//高精度的本质,用长度无限的数组或字符串代替int
//原理:模拟减法退位
#include<iostream>
#incl...
problem
solution
codes
//高精减法
//高精度的本质,用长度无限的数组或字符串代替int
//原理:模拟减法退位
#include<iostream>
#include<algorithm>
#include<string>
using namespace std;
const int maxn = (int)1e6+10;
int a[maxn],b[maxn],c[maxn], flag;
int main(){
string s1, s2;
cin>>s1>>s2;
if(s1 == s2){ cout<<0<<endl; return 0; }
if(s1.size()<s2.size() || (s1.size()==s2.size()&&s1<s2)){ swap(s1,s2); flag = 1; }//教训,字符串比较只比较字典序
a[0] = s1.size(); b[0] = s2.size();
for(int i = 1; i <= a[0]; i++)a[i] = s1[a[0]-i]-'0';
for(int i = 1; i <= b[0]; i++)b[i] = s2[b[0]-i]-'0';
c[0] = max(a[0],b[0])+1;
for(int i = 1; i <= c[0]; i++){
c[i] += a[i]-b[i];
if(c[i] < 0){
c[i] += 10;
c[i+1]--;
}
}
while(c[0]>1 && c[c[0]]==0)c[0]--;
if(flag)cout<<"-";
for(int i = c[0]; i >= 1; i--)
cout<<c[i];
cout<<"\n";
return 0;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
文章来源: gwj1314.blog.csdn.net,作者:小哈里,版权归原作者所有,如需转载,请联系作者。
原文链接:gwj1314.blog.csdn.net/article/details/80628592
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)