UVa 10106 Product:高精度

來源:互聯網
上載者:User

10106 - Product

Time limit: 3.000 seconds

http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=97&page=show_problem&problem=1047

The Problem

The problem is to multiply two integers X, Y. (0<=X,Y<10250)
The Input

The input will consist of a set of pairs of lines. Each line in pair contains one multiplyer.
The Output

For each input pair of lines the output line should consist one integer the product.
Sample Input

12
12
2
222222222222222222222222

Sample Output

144
444444444444444444444444

完整代碼:

/*0.012s*/    #include<cstdio>  #include<cstring>  #include<algorithm>  using namespace std;  const int maxn = 505;      char numstr[maxn];      struct bign  {      int len, s[maxn];          bign()      {          memset(s, 0, sizeof(s));          len = 1;      }          bign(int num)      {          *this = num;      }          bign(const char* num)      {          *this = num;      }          bign operator = (const int num)      {          char s[maxn];          sprintf(s, "%d", num);          *this = s;          return *this;      }          bign operator = (const char* num)      {          len = strlen(num);          for (int i = 0; i < len; i++) s[i] = num[len - i - 1] & 15;          return *this;      }          ///輸出      const char* str() const    {          if (len)          {              for (int i = 0; i < len; i++)                  numstr[i] = '0' + s[len - i - 1];              numstr[len] = '\0';          }          else strcpy(numstr, "0");          return numstr;      }          ///去前置字元為零      void clean()      {          while (len > 1 && !s[len - 1]) len--;      }          ///加      bign operator + (const bign& b) const    {          bign c;          c.len = 0;          for (int i = 0, g = 0; g || i < max(len, b.len); i++)          {              int x = g;              if (i < len) x += s[i];              if (i < b.len) x += b.s[i];              c.s[c.len++] = x % 10;              g = x / 10;          }          return c;      }          ///減      bign operator - (const bign& b) const    {          bign c;          c.len = 0;          for (int i = 0, g = 0; i < len; i++)          {              int x = s[i] - g;              if (i < b.len) x -= b.s[i];              if (x >= 0) g = 0;              else            {                  g = 1;                  x += 10;              }              c.s[c.len++] = x;          }          c.clean();          return c;      }          ///乘      bign operator * (const bign& b) const    {          bign c;          c.len = len + b.len;          for (int i = 0; i < len; i++)              for (int j = 0; j < b.len; j++)                  c.s[i + j] += s[i] * b.s[j];          for (int i = 0; i < c.len - 1; i++)          {              c.s[i + 1] += c.s[i] / 10;              c.s[i] %= 10;          }          c.clean();          return c;      }          ///除      bign operator / (const bign &b) const    {          bign ret, cur = 0;          ret.len = len;          for (int i = len - 1; i >= 0; i--)          {              cur = cur * 10;              cur.s[0] = s[i];              while (cur >= b)              {                  cur -= b;                  ret.s[i]++;              }          }          ret.clean();          return ret;      }          ///模、餘      bign operator % (const bign &b) const    {          bign c = *this / b;          return *this - c * b;      }          bool operator < (const bign& b) const    {          if (len != b.len) return len < b.len;          for (int i = len - 1; i >= 0; i--)              if (s[i] != b.s[i]) return s[i] < b.s[i];          return false;      }          bool operator > (const bign& b) const    {          return b < *this;      }          bool operator <= (const bign& b) const    {          return !(b < *this);      }          bool operator >= (const bign &b) const    {          return !(*this < b);      }          bool operator == (const bign& b) const    {          return !(b < *this) && !(*this < b);      }          bool operator != (const bign &a) const    {          return *this > a || *this < a;      }          bign operator += (const bign &a)      {          *this = *this + a;          return *this;      }          bign operator -= (const bign &a)      {          *this = *this - a;          return *this;      }          bign operator *= (const bign &a)      {          *this = *this * a;          return *this;      }          bign operator /= (const bign &a)      {          *this = *this / a;          return *this;      }          bign operator %= (const bign &a)      {          *this = *this % a;          return *this;      }  } a, b;      int main(void)  {      char ch;      while (~(ch = getchar()))      {          ungetc(ch, stdin);          a = gets(numstr), b = gets(numstr);          puts((a * b).str());      }      return 0;  }

查看本欄目更多精彩內容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/sjjg/

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.