#if LOCALTEST
using System;
namespace System_ {
#else
namespace System {
#endif
public class Random {
private const int MBIG = int.MaxValue;
private const int MSEED = 161803398;
private const int MZ = 0;
private int inext, inextp;
private int[] SeedArray = new int[56];
public Random() : this(Environment.TickCount) { }
public Random(int seed) {
int ii;
int mj, mk;
// Numerical Recipes in C online @ http://www.library.cornell.edu/nr/bookcpdf/c7-1.pdf
mj = MSEED - Math.Abs(seed);
SeedArray[55] = mj;
mk = 1;
for (int i = 1; i < 55; i++) { // [1, 55] is special (Knuth)
ii = (21 * i) % 55;
SeedArray[ii] = mk;
mk = mj - mk;
if (mk < 0)
mk += MBIG;
mj = SeedArray[ii];
}
for (int k = 1; k < 5; k++) {
for (int i = 1; i < 56; i++) {
SeedArray[i] -= SeedArray[1 + (i + 30) % 55];
if (SeedArray[i] < 0)
SeedArray[i] += MBIG;
}
}
inext = 0;
inextp = 31;
}
public int Next() {
return Next(0, int.MaxValue);
}
public int Next(int maxValue) {
if (maxValue < 0) {
throw new ArgumentOutOfRangeException("maxValue");
}
return Next(0, maxValue);
}
public int Next(int minValue, int maxValue) {
if (minValue > maxValue) {
throw new ArgumentOutOfRangeException();
}
if (++inext >= 56) {
inext = 1;
}
if (++inextp >= 56) {
inextp = 1;
}
int retVal = SeedArray[inext] - SeedArray[inextp];
if (retVal < 0) {
retVal += MBIG;
}
SeedArray[inext] = retVal;
if (minValue == maxValue) {
return minValue;
}
return (retVal % (maxValue - minValue)) + minValue;
}
}
}