• 模板——高精度


    贴一个高精度的模板,支持$ + - * /$ (\%) orz 太强辣!!

    #include<cstdio>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    using namespace std;
    
    const int W = 10000;
    
    const int s = 4;
    
    const int WS[4] = {1000,100,10,1};
    
    struct BigInt {
        bool flag;
        int size;
        int values[5100];
    
        BigInt() {
            this->clear();
        }
    
        void clear() {
            memset(values,0,sizeof values);
            this->size = 1;
            this->flag = true;
        }
    
        void operator =(int x) {
            this->clear();
            if (x == 0)
                return;
            int cnt = 0;
            if (x<0)
                x = -x,this->flag = false;
            while (x) {
                this->values[cnt] = x%W;
                x /= W;
                cnt++;
            }
            this->size = cnt;
        }
    
        void operator =(char* x) {
            this->clear();
            int start = 0;
            int len = strlen(x);
            if (len>=1&&x[0]=='-')
                this->flag = false,start++;
            int size = (len-start)%s?(len-start)/s+1:(len-start)/s;
            this->size = size;
            int cnt = 0;
            for (int i = 0;i<this->size;i++){
                for (int j = s-1;j>=0;j--)      
                    this->values[cnt] = this->values[cnt]*10 + (len-i*s-j-1>=start&&x[len-i*s-j-1]?x[len-i*s-j-1]-'0':0);
                cnt++;
            }
        }
    
        void operator =(BigInt x) {
            this->clear();
            this->size = x.size;
            this->flag = x.flag;
            for (int i = 0;i<this->size;i++)
                this->values[i] = x.values[i];
        }
    
        BigInt operator +(BigInt x) const {
            if (this->flag&&x.flag){
                BigInt y = *this;
                add(y,x);
                return y;
            }
            else if (this->flag) {
                x.flag = true;
                BigInt y = *this;
                subtract(y,x);
                return y;
            }
            else if (x.flag) {
                BigInt a = *this;
                a.flag = true;
                subtract(a,x);
                a.flag = false;
                return a;
            }
            else {
                BigInt a = *this;
                a.flag = true;
                x.flag = true;
                add(a,x);
                a.flag = false;
                return a;
            }
        }
    
        BigInt operator *(BigInt x) const {
            bool flag = this->flag == x.flag;
            BigInt y;
            y = *this;
            multiply(y,x);
            y.flag = flag;
            return y;
        }
    
        BigInt operator *(int x) const {
            BigInt i;
            i = x;
            return this->operator *(i);
        }
    
        BigInt operator /(BigInt x) const {
            bool flag = this->flag == x.flag;
            BigInt y;
            y = *this;
            divide(y,x);
            y.flag = flag;
            return y;
        }
    
        BigInt operator /(int x) const {
            BigInt i;
            i = x;
            return this->operator /(i);
        }
    
        void operator /=(BigInt x) {
            bool flag = this->flag == x.flag;
            divide(*this,x);
            this->flag = flag;
        }
    
        void operator /=(int x) {
            BigInt i;
            i = x;
            this->operator /=(i);
        }
    
        BigInt operator %(BigInt x) {
            bool flag = this->flag == x.flag;
            BigInt y = *this;
            mod(y,x);
            y.flag = flag;
            return y;
        }
    
        BigInt operator %(int x) {
            BigInt i;
            i = x;
            this->operator %(i);
        }
    
        void operator *=(BigInt x) {
            bool flag = this->flag == x.flag;
            multiply(*this,x);
            this->flag = flag;
        }
    
        void operator *=(int x) {
            BigInt i;
            i = x;
            this->operator *=(i);
        }
    
        BigInt operator -(BigInt x) const {
            x.flag ^= 1;
            return this->operator +(x);
        } 
    
        BigInt operator -() const {
            BigInt x = *this;
            x.flag ^= 1;
            return x;
        }
    
        BigInt operator +(int x) const {
            BigInt i;
            i = x;
            return *this+i;
        }
    
        BigInt operator -(int x) const {
            BigInt i;
            i = x;
            return *this-i;
        }
    
        void operator +=(BigInt x) {
            if (this->flag&&x.flag)
                add(*this,x);
            else if (this->flag) {
                x.flag = true;
                subtract(*this,x);
            }
            else if (x.flag) {
                this->flag = true;
                subtract(*this,x);
                this->flag = false;
            }
            else {
                this->flag = true;
                x.flag = true;
                add(*this,x);
                this->flag = false;
            }
        }
    
        void operator +=(int x) {
            BigInt i;
            i = x;
            return this->operator +=(i);
        }
    
        void operator -=(int x) {
            BigInt i;
            i = x;
            return this->operator -=(i); 
        }
    
        void operator -=(BigInt x) {
            x.flag ^= 1; 
            this->operator +=(x);
        }
    
        BigInt operator ++() {
            this->operator +=(1);
            return *this;
        }
    
        BigInt operator --() {
            this->operator +=(-1);
            return *this;
        }
    
        char* charValue() const {
            int maxcnt = 0;
            int start = 0;
            if(!this->flag)
                start++;
            char* t = new char[this->size*s+1+start];
            if (!this->flag)
                t[0] = '-';
            for (int i = 0;i<this->size;i++){ 
                for (int j = s-1;j>=0;j--){
                    t[i*s+s-1-j+start] = (this->values[i]/WS[j])%10+'0';
                    if (t[i*s+s-1-j+start]!='0')
                        maxcnt = i*s+s-1-j+start;
                } 
            } 
            t[maxcnt+1] = 0;
            reverse(t+start,t+maxcnt+1);
            return t;
        }
    
        operator char*() const {
            return charValue();
        }
    
        bool operator==(BigInt x) const {
            if (this->size != x.size)
                return false;
            if (this->size == 1&&this->values[0]==x.values[0]&&this->values[0] == 0)
                return true; 
            if (this->flag != x.flag)
                return false;
            for (int i = 0;i<this->size;i++)
                if (this->values[i]!=x.values[i])
                    return false;
            return true;
        }
    
        bool operator==(int x) const {
            BigInt y;
            y = x;
            return *this == y;
        }
    
        bool operator !=(BigInt x) const {
            if (*this == x)
                return false;
            return true;
        }
    
        bool operator <(BigInt x) const {
            if (this->size > x.size)
                return false;
            else if (this->size < x.size)
                return true;
            if ((int)this->flag > (int)x.flag)
                return false;
            for (int i = this->size-1;i>=0;i--)
                if (this->values[i]<x.values[i])
                    if (this->flag)
                        return true;
                    else return false;
                else if (this->values[i]>x.values[i])
                    if (this->flag)
                        return false;
                    else return true;
            return false;
        }
    
        bool operator >(BigInt x) const {
            if (*this<x)
                return false;
            if (*this == x)
                return false;
            return true;
        }
    
        bool operator <=(BigInt x) const {
            if (*this>x)
                return false;
            return true;
        }
    
        bool operator >=(BigInt x) const {
            if (*this<x)
                return false;
            return true;
        }
    
        bool operator !() const {
            if (this->size != 1)
                return true;
            if (this->values[0] != 0)
                return true;
            return false;
        }
    
        void println() {
            print(*this);
            print("
    ");
        }
    
        static void add(BigInt&a,BigInt b) {
            int cnt = max(a.size,b.size) + 1;
            for (int i = 0;i<cnt;i++) {
                int t = a.values[i] + b.values[i];
                if (t>=W)
                    a.values[i] = t - W,a.values[i+1]++;
                else
                    a.values[i] = t;
            }
            if (a.values[cnt-1])
                a.size = cnt;
            else
                a.size = cnt - 1;
        }
    
        static void subtract(BigInt&a,BigInt b) {
            if (a == b){ 
                a = 0;
                return; 
            }
            if (a<b)
                swap(a,b),a.flag = false;
            int maxcnt = 0;
            int cnt = max(a.size,b.size);
            bool flag = false;
            for (int i = 0;i<cnt;i++) {
                int t = a.values[i]-b.values[i];
                if (flag)
                    t--,flag = false;
                if (t<0)
                    flag = true,a.values[i] = t + W;
                else
                    a.values[i] = t;
                if (a.values[i])
                    maxcnt = i;
            }
            a.size = maxcnt+1;
        }
    
        static void multiply(BigInt&a,BigInt b) {
            if (a==1){ 
                a = b;
                return; 
            } 
            if (a==0||b==0) {
                a = 0;
                return;
            }
            if (b==1) {
                return;
            }
            int size = a.size + b.size;
            int* ts = new int[size];
            for (int i = 0;i<size;i++)
                ts[i] = 0;
            for (int i = 0;i<a.size;i++)
                for (int j = 0;j<b.size;j++) {
                    int t = a.values[i]*b.values[j];
                    if (t>=W)
                        ts[i+j] += t%W,ts[i+j+1] += t/W;
                    else 
                        ts[i+j] += t;
                } 
            for (int i = 0;i<size;i++) {
                if (ts[i]>=W)
                    ts[i+1]+=ts[i]/W,ts[i]%=W;
                a.values[i] = ts[i];
            }
            if (ts[size-1])
                a.size = size;
            else a.size = size-1;
        }
    
        static void divide(BigInt&a,BigInt b) {
            if (a<b) {
                a = 0;
                return;
            }
            if (a==b) {
                a = 1;
                return;
            }
            if (b == 0) {
                a = 0;
                return;
            }
            if (b==1)
                return;
            if (b==2) {
                divide2(a);
                return;
            }
            BigInt left,right;
            left = 0,right = a;
            while (left<=right) {
                BigInt mid;
                mid = left + right;
                divide2(mid);
                BigInt o = mid*b;
                BigInt o2 = o + b;
                if (o<=a&&o2>a) {
                    a = mid;
                    return;
                }
                else if (o2<=a) 
                    left = mid + 1;
                else 
                    right = mid - 1;
            }
        }
    
        static void divide2(BigInt&a) {
            for (int i = 0;i<a.size;i++) {
                int t = a.values[i];
                if (t%2==0||i==0)
                    a.values[i] /=2;
                else 
                    a.values[i] /=2,a.values[i-1] += W/2;
            }
            if (!a.values[a.size-1])
                a.size--;
        }
    
        static BigInt pow10(int x) {
            int size = (x+1)%s == 0?(x+1)/s:(x+1)/s+1;
            BigInt y;
            y.size = size;
            if ((x+1)%s) {
                y.values[(x+1)/s] = WS[s-(x+1)%s];
            }
            else 
                y.values[(x+1)/s-1] = WS[0];
            return y;
        }
    
        static void mod(BigInt&a,BigInt b) {
            BigInt x = a;
            divide(x,b);
            a -= b*x;
        }
    
        static void print(BigInt x) {
            if (!x.flag)
                cout<<"-";
            cout<<x.values[x.size-1];
            for (int i = x.size-2;i>=0;i--) 
                print(x.values[i],s);
        }
    
        static void print(char* x) {
            cout<<x;
        }
    
        static void print(int x,int d) {
            for (int i = 0;i<d;i++)
                cout<<(x/WS[i])%10;
        }
    
        static void swap(BigInt&a,BigInt&b) {
            BigInt x = a;
            a = b;
            b = x;
        }
    };
    
    char t[15000];
    BigInt a;
    BigInt b;
    BigInt c;
    BigInt d;
    int main(){
    	cin>>t;
    	a = t;
    	cin>>t;
    	b = t;
    	cin>>t;
    	c = t;
    	cin>>t;
    	d = t;
    	cout<<(a+b)*(c-d)/(a%c+d+b)<<endl;
    	return 0;
    }
    
  • 相关阅读:
    XHR 学习整理
    IT职业规划与行业分析(转)
    hibernate的native sql查询(转)
    关于html selection 的经典示例
    html Selection
    javaWeb网购系统
    随笔,java我差很多
    系统架构:Web应用架构的新趋势---前端和后端分离的一点想法(转)
    oracle11g 重装操作系统后,如何利用原有oracle表空间文件还原数据库
    myeclipse maven 安装
  • 原文地址:https://www.cnblogs.com/lajioj/p/9474944.html
Copyright © 2020-2023  润新知