颓了个很好的高精板子(但没有高精乘低精,以后再补)。
struct Big{
int len,s[810];
Big(){memset(s,0,sizeof(s)); len=1;}
Big(int val) {*this=val;}
Big(const char *val) {*this=val;}
Big operator = (const int &val){
R char s[810];
sprintf(s,"%d",val);
*this=s;return *this;
}
Big operator = (const char *val){
len=strlen(val);
while(len>1&&val[0]==‘0‘) ++val,len--;
for(R int i=0;i<len;++i) s[i]=val[len-i-1]-‘0‘;
return *this;
}
inline void deal(){
while(len>1&&!s[len-1]) len--;
}
Big operator + (const Big &a) const {
Big res; res.len=0;
R int top=max(len,a.len),add=0;
for(R int i=0;add||i<top;++i){
R int now=add;
if(i<len) now+=s[i];
if(i<a.len) now+=a.s[i];
res.s[res.len++]=now%10;
add=now/10;
}
return res;
}
Big operator - (const Big &a) const {
Big res; res.len=0;R int del=0;
for(R int i=0;i<len;++i){
R int now=s[i]-del;
if(i<a.len) now-=a.s[i];
if(now>=0) del=0;
else del=1,now+=10;
res.s[res.len++]=now;
}
res.deal(); return res;
}
Big operator * (const Big &a) const {
Big res; res.len=len+a.len;
for(R int i=0;i<len;++i)
for(R int j=0;j<a.len;++j)
res.s[i+j]+=s[i]*a.s[j];
for(R int i=0;i<res.len;++i)
res.s[i+1]+=res.s[i]/10,res.s[i]%=10;
res.deal(); return res;
}
Big operator / (const Big &a) const {
Big res,cur=0;res.len=len;
for(R int i=len-1;~i;--i){
cur=cur*10,cur.s[0]=s[i];
while(cur>=a)
cur-=a,res.s[i]++;
}
res.deal(); return res;
}
Big operator % (const Big &a) const {
Big res=*this/a;
return *this-res*a;
}
Big operator += (const Big &a) {*this=*this+a; return *this;}
Big operator -= (const Big &a) {*this=*this-a; return *this;}
Big operator *= (const Big &a) {*this=*this*a; return *this;}
Big operator /= (const Big &a) {*this=*this/a; return *this;}
Big operator %= (const Big &a) {*this=*this%a; return *this;}
bool operator < (const Big &a) const {
if(len!=a.len) return len<a.len;
for(R int i=len-1;~i;i--)
if(s[i]!=a.s[i]) return s[i]<a.s[i];
return false;
}
bool operator > (const Big &a) const {return a<*this;}
bool operator <= (const Big &a) const {return !(*this>a);}
bool operator >= (const Big &a) const {return !(*this<a);}
bool operator == (const Big &a) const {return !(*this>a||*this<a);}
bool operator != (const Big &a) const {return *this>a||*this<a;}
inline void print(){
for(R int i=a.len-1;~i;--i)
printf("%d",a.s[i]); puts("");
}
};
原文:https://www.cnblogs.com/toot-wjh/p/11743228.html