Difference between revisions of "PEGWiki:Sandbox"

From PEGWiki
Jump to: navigation, search
(Replaced content with "<math>testing\, 123 \, xyz</math>")
Line 1: Line 1:
'''Big numbers''', known colloquially as '''bignums''' (adjectival form ''bignum'', as in ''bignum arithmetic'') are integers whose range exceeds those of machine registers. For example, most modern processors possess 64-bit registers which can be used to store integers up to 2<sup>64</sup>-1. It is usually possible to add, subtract, multiply, or divide such integers in a single machine instruction. However, such machines possess no native implementation of arithmetic on numbers larger than this, nor any native means of representing them. In some applications, it might be necessary to work with numbers with hundreds or even thousands of digits.
+
<math>testing\, 123 \, xyz</math>
 
+
Of course, humans have no problems with working with numbers greater than 2<sup>64</sup>-1, other than the fact that it becomes increasingly tedious as the numbers grow larger; we just write them out and use the same algorithms we use on smaller numbers: add column-by-column and carry, and so on. This turns out to be the key to working with bignums in computer programs too. '''When we write out a number in decimal representation, we are essentially expressing it as a string or array of digits and the algorithms we use to perform arithmetic on them, which entail examining the digits in a particular order, may be considered as loops.'''
+
==Nonnegative integers==
+
===Digital representation===
+
Most of the time, and almost all of the time in contests, the only bignums the programmer will be required to implement are positive integers. As alluded to above, bignums in computer programs are represented using a radix system. This means that a bignum is stored in a base <math>n</math> representation, where the choice of <math>n</math> is based on the application. Precisely, the nonnegative integer <math>N = a_0 + a_1 n + a_2 n^2 + ... + a_k n^k</math> is stored by giving the values <math>a_0, a_1, a_2, ..., a_k</math>, which we probably want to store as an array. Here are a few common possibilities, demonstrated for the example of 30! = 265252859812191058636308480000000:
+
* If we let the radix be 10:
+
:* ASCII representation: the number is represented by a string which literally contains the number's digits as characters: 265252859812191058636308480000000 would be represented ['2','6','5',...,'0']
+
:* BCD representation: an array of digits (not their ASCII values), hence [2,6,5,...,0]
+
* If we let the radix be 10<sup>9</sup>, we can store nine digits in each array entry. For example, 30! could be stored [265252,859812191,058636308,480000000]. ''Note that we must take care to group digits starting from the ones' place and moving left'', instead of starting at the most significant digit and moving right, to avoid complicating the code and eroding performance. This is because adding and subtracting bignums requires that they be aligned at the decimal point (not at the most significant digit), so it is convenient when we guarantee that this is never found ''within'' an entry, otherwise shifting would be necessary.
+
* If we let the radix be 2<sup>32</sup>, we use a sequence of 32-bit unsigned integer typed variables to store the bignum. We know {{radix|265252859812191058636308480000000|10}} = {{hex|D13F6370F96865DF5DD54000000}}. Again, we align at the ones' place, giving [{{hex|00000D13}},{{hex|F6370F96}},{{hex|865DF5DD}},{{hex|54000000}}]. (Of course, you should not actually explicitly store the hex representations, because that would be cumbersome and slow. It's just an array of 32-bit values.)
+
 
+
===Little-endian vs. big-endian===
+
The ''byte'' is the fundamental addressable unit of memory for a given processor. This is distinct from the ''word'', which is the natural unit of data for a given processor. For example, the Intel 386 processor had 8 bits to a byte but 32 bits to a word. Each byte in memory may be addressed individually by a pointer, but one cannot address the individual bits in them. That being said, when a 32-bit machine word is written to memory, there are two ways it could be done. Suppose the number {{hex|CAFEBABE}} is stored at memory location {{hex|DEADBEEF}}. This will occupy four bytes of memory, and they must be contiguous so that the processor can read and write them as units. The important question is whether the most significant byte (in this case {{hex|CA}}) comes first (big-endian) or last (little-endian). The following table shows where each byte ends up in each scheme.
+
<!-- The CSS for this table is at the end of the page. -->
+
{| class="endian_table"
+
!|
+
!| {{hex|DEADBEEF}}
+
!| {{hex|DEADBEF0}}
+
!| {{hex|DEADBEF1}}
+
!| {{hex|DEADBEF2}}
+
|-
+
|| '''Big-endian'''
+
|| {{hex|CA}}
+
|| {{hex|FE}}
+
|| {{hex|BA}}
+
|| {{hex|16}}
+
|-
+
|| '''Little-endian'''
+
|| {{hex|BE}}
+
|| {{hex|BA}}
+
|| {{hex|FE}}
+
|| {{hex|CA}}
+
|}
+
One faces a similar choice when storing bignums: does the most significant part get stored in the first or the last position of the array? Almost every processor is either consistently little-endian or consistently big-endian, but this does not affect the programmer's ability to choose either little-endian or big-endian representations for bignums as the application requires. The importance of this is discussed in the next section.
+
 
+
===Fixed-width versus dynamic-width bignums===
+
There are, in principle, two kinds of bignum implementation. Suppose we know in advance the maximum size of the integers we might be working with. For example, in {{SPOJ|TREE1|TREE1@SPOJ}}, we are asked to report the number of permutations which satisfy a certain property. There are only up to 30 elements, so we know that the answer will not exceed 30! = 265252859812191058636308480000000, which has 33 digits. It is not terribly difficult to implement the solution in such a way that no intermediate variable is ever larger than this. So we could, for example, use a string of length 33 to store all integers used in the computation of the answer (where numbers with fewer than 33 digits are padded with zeroes on the left), and treat all numbers as though they had 33 digits. The only time when we would care how many digits the number actually has is when outputting it. Addition can now be implemented as a loop over 33 columns, and is fairly simple. This implementation is called ''fixed-width''.
+
 
+
On the other hand, sometimes it is not so easy to determine in advance the size of the numbers we might be working with, or a problem might have bundled test cases and a strict time limit, forcing the programmer to make the small cases run more quickly than the large ones. When this occurs it is a better idea to use ''dynamic'' bignums, which can expand or shrink according to their length. Dynamic bignums are trickier to code than fixed-width ones: when we add them, for example, we have to take into account that they might not be of the same length; we might then treat all the missing digits as zeroes, but in any case it requires extra code. When using dynamic bignums the difference between the little-endian and big-endian representations becomes significant. If we store the bignums little-endian, and add them, alignment is free: just look at the first entry in each of them; they are in the ones' places of their respective numbers. The code presented in this article will assume the little-endian representation.
+
 
+
===Error conditions===
+
What happens if the program tries to divide a bignum by zero? In almost all popular programming languages (but not C), one can take advantage of built-in-support for exceptions. If the bignum division function raises an exception, this can be caught by the calling function and handled somehow. What we do not want is an unconditional crash of the program. There are also some other conditions that can generate unpredictable behavior, such as integer overflow. It is important to check for these in the code and take appropriate action (such as raising an exception).
+
* Check that you don't divide by zero.
+
* Check that a larger number is not subtracted from a smaller number, otherwise unpredictable behavior may result.
+
* Fixed-width bignums may overflow when adding or multiplying. You will be able to detect this because a carry is generated in the left-most column when adding, or something like that. Naively failing to check this may result in out-of-bounds array access.
+
* Check that the input does not overflow a fixed-width bignum. Naively failing to check this will probably result in an out-of-bounds array access.
+
* If you're writing a bignum library, and intend to reuse the code, you might also want to check, with dynamic bignums, that your attempts to allocate more memory actually succeed. (You might be sure that your computer and the judge computer have enough memory for the purposes of ''this'' particular problem, but maybe you'll do another problem later with a lower memory limit, or someone else with less RAM will use your code.) If not, and you just keep going on anyway, a segfault is almost certain to occur. If you do check, you can throw an exception.
+
 
+
<!--
+
==Negative integers==
+
There are in principle two ways we can deal with negative integers. One of them is to store a ''sign bit'' together with each bignum, true if it is negative or false if it is positive (or ''vice versa''). Then the following rules apply, where ''a'' and ''b'' are nonnegative:
+
* ''a'' < (-''b'') is always false
+
* (-''a'') < ''b'' is always true, except when ''a'' and ''b'' are both zero
+
* (-''a'') < (-''b'') is true if and only if ''b'' < ''a''
+
* ''a'' + (-''b'')
+
:* = -(''a'' - ''b'') if ''a'' &gt; ''b''
+
:* = -(''b'' - ''a'') otherwise.
+
* (-''a'') + (-''b'') = -(''a''+''b'')
+
* ''a'' &times; (-''b'') = -(''a'' &times; ''b'')
+
* (-''a'') &times; (-''b'') = ''a'' &times; ''b''
+
* ''a'' '''div''' (-''b'') = -(''a'' '''div''') ''b''
+
* (-''a'') '''div''' (-''b'') = ''a'' '''div''' ''b''
+
* ''a'' '''mod''' ''b'' = ''a'' - ''b'' &times; (''a'' '''div''' ''b'') regardless of the signs of ''a'' and ''b''.
+
Note that addition and multiplication are commutative, and that this definition of '''mod''' is only guaranteed to produce a nonnegative integer when both ''a'' and ''b'' are positive.
+
These rules enable us to reduce operations on negative integers to the corresponding operations on nonnegative integers.
+
 
+
The other method is suitable only for fixed-size bignums and is based on the ''two's complement'' convention used in almost all modern processors for built-in integer types. We suppose that the radix is <math>b</math> and that the bignum contains <math>n</math> digits. Then, the largest positive integer we can represent is <math>b^w-1</math>. Notice that when
+
-->
+
 
+
{{#css:
+
  .endian_table
+
  {
+
      border-collapse: collapse;
+
      border-width: 3px solid #ccc;
+
  }
+
  .endian_table th
+
  {
+
    border-style: solid;
+
    border-width: 1px;
+
    font-weight: bold;
+
  }
+
  .endian_table td
+
  {
+
    border-style: solid;
+
    border-width: 1px;
+
  }
+
}}
+
 
+
<!-- testing -->
+

Revision as of 03:59, 12 May 2013

testing\, 123 \, xyz