Fastest way to determine if an integer's square root is an integer - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T15:48:58Zhttp://stackoverflow.com/feeds/question/295579http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer86Fastest way to determine if an integer's square root is an integerKip2008-11-17T13:43:21Z2009-09-26T01:08:24Z
<p>I'm looking for the fastest way to determine if a <code>long</code> value is a perfect square (i.e. its square root is another integer). I've done it the easy way, by using the built-in Math.sqrt() function, but I'm wondering if there is a way to do it faster by restricting yourself to integer-only domain. Maintaining a lookup table is impratical (since there are about 2<sup>31.5</sup> integers whose square is less than 2<sup>63</sup>).</p>
<p>Here is the very simple and straightforward way I'm doing it now:</p>
<pre><code>public final static boolean isPerfectSquare(long n)
{
if (n < 0)
return false;
long tst = (long)(Math.sqrt(n) + 0.5);
return tst*tst == n;
}
</code></pre>
<p><hr /></p>
<p><i>Notes: I'm using this function in many <a href="http://projecteuler.net/" rel="nofollow">Project Euler</a> problems. So no one else will ever have to maintain this code. And this kind of micro-optimization could actually make a difference, since part of the challenge is to do every algorithm in less than a minute, and this function will need to be called millions of times in some problems.</i></p>
<p><hr /></p>
<p><strong>Update 2</strong>: A new solution posted by <a href="http://stackoverflow.com/users/3508/a-rex">A. Rex</a> has proven to be even faster. In a run over the first 1 billion integers, the solution only required 34% of the time that the original solution used. While the John Carmack hack is a little better for small values of <em>n</em>, the benefit compared to this solution is pretty small.</p>
<p>Here is the A. Rex solution, converted to Java:</p>
<pre><code>private final static boolean isPerfectSquare(long n)
{
// Quickfail
if( n < 0 || ((n&2) != 0) || ((n & 7) == 5) || ((n & 11) == 8) )
return false;
if( n == 0 )
return true;
// Check mod 255 = 3 * 5 * 17, for fun
long y = n;
y = (y & 0xffffffffL) + (y >> 32);
y = (y & 0xffffL) + (y >> 16);
y = (y & 0xffL) + ((y >> 8) & 0xffL) + (y >> 16);
if( bad255[(int)y] )
return false;
// Divide out powers of 4 using binary search
if((n & 0xffffffffL) == 0)
n >>= 32;
if((n & 0xffffL) == 0)
n >>= 16;
if((n & 0xffL) == 0)
n >>= 8;
if((n & 0xfL) == 0)
n >>= 4;
if((n & 0x3L) == 0)
n >>= 2;
if((n & 0x7L) != 1)
return false;
// Compute sqrt using something like Hensel's lemma
long r, t, z;
r = start[(int)((n >> 3) & 0x3ffL)];
do {
z = n - r * r;
if( z == 0 )
return true;
if( z < 0 )
return false;
t = z & (-z);
r += (z & t) >> 1;
if( r > (t >> 1) )
r = t - r;
} while( t <= (1L << 33) );
return false;
}
private static boolean[] bad255 =
{
false,false,true ,true ,false,true ,true ,true ,true ,false,true ,true ,true ,
true ,true ,false,false,true ,true ,false,true ,false,true ,true ,true ,false,
true ,true ,true ,true ,false,true ,true ,true ,false,true ,false,true ,true ,
true ,true ,true ,true ,true ,true ,true ,true ,true ,true ,false,true ,false,
true ,true ,true ,false,true ,true ,true ,true ,false,true ,true ,true ,false,
true ,false,true ,true ,false,false,true ,true ,true ,true ,true ,false,true ,
true ,true ,true ,false,true ,true ,false,false,true ,true ,true ,true ,true ,
true ,true ,true ,false,true ,true ,true ,true ,true ,false,true ,true ,true ,
true ,true ,false,true ,true ,true ,true ,false,true ,true ,true ,false,true ,
true ,true ,true ,false,false,true ,true ,true ,true ,true ,true ,true ,true ,
true ,true ,true ,true ,true ,false,false,true ,true ,true ,true ,true ,true ,
true ,false,false,true ,true ,true ,true ,true ,false,true ,true ,false,true ,
true ,true ,true ,true ,true ,true ,true ,true ,true ,true ,false,true ,true ,
false,true ,false,true ,true ,false,true ,true ,true ,true ,true ,true ,true ,
true ,true ,true ,true ,false,true ,true ,false,true ,true ,true ,true ,true ,
false,false,true ,true ,true ,true ,true ,true ,true ,false,false,true ,true ,
true ,true ,true ,true ,true ,true ,true ,true ,true ,true ,true ,false,false,
true ,true ,true ,true ,false,true ,true ,true ,false,true ,true ,true ,true ,
false,true ,true ,true ,true ,true ,false,true ,true ,true ,true ,true ,false,
true ,true ,true ,true ,true ,true ,true ,true ,false,false,true ,true ,false,
true ,true ,true ,true ,false,true ,true ,true ,true ,true ,false,false,true ,
true ,false,true ,false,true ,true ,true ,false,true ,true ,true ,true ,false,
true ,true ,true ,false,true ,false,true ,true ,true ,true ,true ,true ,true ,
true ,true ,true ,true ,true ,false,true ,false,true ,true ,true ,false,true ,
true ,true ,true ,false,true ,true ,true ,false,true ,false,true ,true ,false,
false,true ,true ,true ,true ,true ,false,true ,true ,true ,true ,false,true ,
true ,false,false,true ,true ,true ,true ,true ,true ,true ,true ,false,true ,
true ,true ,true ,true ,false,true ,true ,true ,true ,true ,false,true ,true ,
true ,true ,false,true ,true ,true ,false,true ,true ,true ,true ,false,false,
true ,true ,true ,true ,true ,true ,true ,true ,true ,true ,true ,true ,true ,
false,false,true ,true ,true ,true ,true ,true ,true ,false,false,true ,true ,
true ,true ,true ,false,true ,true ,false,true ,true ,true ,true ,true ,true ,
true ,true ,true ,true ,true ,false,true ,true ,false,true ,false,true ,true ,
false,true ,true ,true ,true ,true ,true ,true ,true ,true ,true ,true ,false,
true ,true ,false,true ,true ,true ,true ,true ,false,false,true ,true ,true ,
true ,true ,true ,true ,false,false,true ,true ,true ,true ,true ,true ,true ,
true ,true ,true ,true ,true ,true ,false,false,true ,true ,true ,true ,false,
true ,true ,true ,false,true ,true ,true ,true ,false,true ,true ,true ,true ,
true ,false,true ,true ,true ,true ,true ,false,true ,true ,true ,true ,true ,
true ,true ,true ,false,false
};
private static int[] start =
{
1,3,1769,5,1937,1741,7,1451,479,157,9,91,945,659,1817,11,
1983,707,1321,1211,1071,13,1479,405,415,1501,1609,741,15,339,1703,203,
129,1411,873,1669,17,1715,1145,1835,351,1251,887,1573,975,19,1127,395,
1855,1981,425,453,1105,653,327,21,287,93,713,1691,1935,301,551,587,
257,1277,23,763,1903,1075,1799,1877,223,1437,1783,859,1201,621,25,779,
1727,573,471,1979,815,1293,825,363,159,1315,183,27,241,941,601,971,
385,131,919,901,273,435,647,1493,95,29,1417,805,719,1261,1177,1163,
1599,835,1367,315,1361,1933,1977,747,31,1373,1079,1637,1679,1581,1753,1355,
513,1539,1815,1531,1647,205,505,1109,33,1379,521,1627,1457,1901,1767,1547,
1471,1853,1833,1349,559,1523,967,1131,97,35,1975,795,497,1875,1191,1739,
641,1149,1385,133,529,845,1657,725,161,1309,375,37,463,1555,615,1931,
1343,445,937,1083,1617,883,185,1515,225,1443,1225,869,1423,1235,39,1973,
769,259,489,1797,1391,1485,1287,341,289,99,1271,1701,1713,915,537,1781,
1215,963,41,581,303,243,1337,1899,353,1245,329,1563,753,595,1113,1589,
897,1667,407,635,785,1971,135,43,417,1507,1929,731,207,275,1689,1397,
1087,1725,855,1851,1873,397,1607,1813,481,163,567,101,1167,45,1831,1205,
1025,1021,1303,1029,1135,1331,1017,427,545,1181,1033,933,1969,365,1255,1013,
959,317,1751,187,47,1037,455,1429,609,1571,1463,1765,1009,685,679,821,
1153,387,1897,1403,1041,691,1927,811,673,227,137,1499,49,1005,103,629,
831,1091,1449,1477,1967,1677,697,1045,737,1117,1737,667,911,1325,473,437,
1281,1795,1001,261,879,51,775,1195,801,1635,759,165,1871,1645,1049,245,
703,1597,553,955,209,1779,1849,661,865,291,841,997,1265,1965,1625,53,
1409,893,105,1925,1297,589,377,1579,929,1053,1655,1829,305,1811,1895,139,
575,189,343,709,1711,1139,1095,277,993,1699,55,1435,655,1491,1319,331,
1537,515,791,507,623,1229,1529,1963,1057,355,1545,603,1615,1171,743,523,
447,1219,1239,1723,465,499,57,107,1121,989,951,229,1521,851,167,715,
1665,1923,1687,1157,1553,1869,1415,1749,1185,1763,649,1061,561,531,409,907,
319,1469,1961,59,1455,141,1209,491,1249,419,1847,1893,399,211,985,1099,
1793,765,1513,1275,367,1587,263,1365,1313,925,247,1371,1359,109,1561,1291,
191,61,1065,1605,721,781,1735,875,1377,1827,1353,539,1777,429,1959,1483,
1921,643,617,389,1809,947,889,981,1441,483,1143,293,817,749,1383,1675,
63,1347,169,827,1199,1421,583,1259,1505,861,457,1125,143,1069,807,1867,
2047,2045,279,2043,111,307,2041,597,1569,1891,2039,1957,1103,1389,231,2037,
65,1341,727,837,977,2035,569,1643,1633,547,439,1307,2033,1709,345,1845,
1919,637,1175,379,2031,333,903,213,1697,797,1161,475,1073,2029,921,1653,
193,67,1623,1595,943,1395,1721,2027,1761,1955,1335,357,113,1747,1497,1461,
1791,771,2025,1285,145,973,249,171,1825,611,265,1189,847,1427,2023,1269,
321,1475,1577,69,1233,755,1223,1685,1889,733,1865,2021,1807,1107,1447,1077,
1663,1917,1129,1147,1775,1613,1401,555,1953,2019,631,1243,1329,787,871,885,
449,1213,681,1733,687,115,71,1301,2017,675,969,411,369,467,295,693,
1535,509,233,517,401,1843,1543,939,2015,669,1527,421,591,147,281,501,
577,195,215,699,1489,525,1081,917,1951,2013,73,1253,1551,173,857,309,
1407,899,663,1915,1519,1203,391,1323,1887,739,1673,2011,1585,493,1433,117,
705,1603,1111,965,431,1165,1863,533,1823,605,823,1179,625,813,2009,75,
1279,1789,1559,251,657,563,761,1707,1759,1949,777,347,335,1133,1511,267,
833,1085,2007,1467,1745,1805,711,149,1695,803,1719,485,1295,1453,935,459,
1151,381,1641,1413,1263,77,1913,2005,1631,541,119,1317,1841,1773,359,651,
961,323,1193,197,175,1651,441,235,1567,1885,1481,1947,881,2003,217,843,
1023,1027,745,1019,913,717,1031,1621,1503,867,1015,1115,79,1683,793,1035,
1089,1731,297,1861,2001,1011,1593,619,1439,477,585,283,1039,1363,1369,1227,
895,1661,151,645,1007,1357,121,1237,1375,1821,1911,549,1999,1043,1945,1419,
1217,957,599,571,81,371,1351,1003,1311,931,311,1381,1137,723,1575,1611,
767,253,1047,1787,1169,1997,1273,853,1247,413,1289,1883,177,403,999,1803,
1345,451,1495,1093,1839,269,199,1387,1183,1757,1207,1051,783,83,423,1995,
639,1155,1943,123,751,1459,1671,469,1119,995,393,219,1743,237,153,1909,
1473,1859,1705,1339,337,909,953,1771,1055,349,1993,613,1393,557,729,1717,
511,1533,1257,1541,1425,819,519,85,991,1693,503,1445,433,877,1305,1525,
1601,829,809,325,1583,1549,1991,1941,927,1059,1097,1819,527,1197,1881,1333,
383,125,361,891,495,179,633,299,863,285,1399,987,1487,1517,1639,1141,
1729,579,87,1989,593,1907,839,1557,799,1629,201,155,1649,1837,1063,949,
255,1283,535,773,1681,461,1785,683,735,1123,1801,677,689,1939,487,757,
1857,1987,983,443,1327,1267,313,1173,671,221,695,1509,271,1619,89,565,
127,1405,1431,1659,239,1101,1159,1067,607,1565,905,1755,1231,1299,665,373,
1985,701,1879,1221,849,627,1465,789,543,1187,1591,923,1905,979,1241,181
};
</code></pre>
<p><hr /></p>
<p><strong>Update</strong>: I've tried the different solutions presented below.</p>
<ul>
<li>After exhaustive testing, I found that adding <code>0.5</code> to the result of Math.sqrt() is not necessary, at least not on my machine.</li>
<li>The <a href="http://www.codemaestro.com/reviews/9" rel="nofollow">John Carmack hack</a> was faster, but it gave incorrect results starting at n=410881. However, as suggested by <a href="http://stackoverflow.com/users/38426/bobbyshaftoe">BobbyShaftoe</a>, we can use the Carmack hack for n < 410881.</li>
<li>Newton's method was a good bit slower than <code>Math.sqrt()</code>. This is probably because <code>Math.sqrt()</code> uses something similar to Newton's Method, but implemented in the hardware so it's much faster than in Java. Also, Newton's Method still required use of doubles.</li>
<li>A modified Newton's method, which used a few tricks so that only integer math was involved, required some hacks to avoid overflow (I want this function to work with all positive 64-bit signed integers), and it was still slower than <code>Math.sqrt()</code>.</li>
<li>Binary chop was even slower. This makes sense because the binary chop will on average require 16 passes to find the square root of a 64-bit number.</li>
</ul>
<p>The one suggestion which did show improvements was made by <a href="http://stackoverflow.com/users/25188/john-d-cook">John D. Cook</a>. You can observe that the last hex digit (i.e. the last 4 bits) of a perfect square must be 0, 1, 4, or 9. This means that 75% of numbers can be immediately eliminated as possible squares. Implementing this solution resulted in about a 50% reduction in runtime.</p>
<p>Working from John's suggestion, I investigated properties of the last <em>n</em> bits of a perfect square. By analyzing the last 6 bits, I found that only 12 out of 64 values are possible for the last 6 bits. This means 81% of values can be eliminated without using any math. Implementing this solution gave an additional 8% reduction in runtime (compared to my original algorithm). Analyzing more than 6 bits results in a list of possible ending bits which is too large to be practical.</p>
<p>Here is the code that I have used, which runs in 42% of the time required by the original algorithm (based on a run over the first 100 million integers). For values of <em>n</em> less than 410881, it runs in only 29% of the time required by the original algorithm.</p>
<pre><code>private final static boolean isPerfectSquare(long n)
{
if (n < 0)
return false;
switch((int)(n & 0x3F))
{
case 0x00: case 0x01: case 0x04: case 0x09: case 0x10: case 0x11:
case 0x19: case 0x21: case 0x24: case 0x29: case 0x31: case 0x39:
long sqrt;
if(n < 410881L)
{
//John Carmack hack, converted to Java.
// See: http://www.codemaestro.com/reviews/9
int i;
float x2, y;
x2 = n * 0.5F;
y = n;
i = Float.floatToRawIntBits(y);
i = 0x5f3759df - ( i >> 1 );
y = Float.intBitsToFloat(i);
y = y * ( 1.5F - ( x2 * y * y ) );
sqrt = (long)(1.0F/y);
}
else
{
//Carmack hack gives incorrect answer for n >= 410881.
sqrt = (long)Math.sqrt(n);
}
return sqrt*sqrt == n;
default:
return false;
}
}
</code></pre>
<p><strong>Notes</strong>:</p>
<ul>
<li>According to John's tests, using <code>or</code> statements is faster in C++ than using a <code>switch</code>, but in Java and C# there appears to be no difference between <code>or</code> and <code>switch</code>.</li>
<li>I also tried making a lookup table (as a private static array of 64 boolean values). Then instead of either switch or <code>or</code> statement, I would just say <code>if(lookup[(int)(n&0x3F)]) { test } else return false;</code>. To my surprise, this was (just slightly) slower. <del>I'm not sure why.</del> This is because <a href="http://stackoverflow.com/questions/299079/why-is-this-code-with-several-or-statements-slightly-faster-than-using-a-lookup-t#299205">array bounds are checked in Java</a>. </li>
</ul>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/295585#2955852Answer by Aistina for Fastest way to determine if an integer's square root is an integerAistina2008-11-17T13:47:23Z2008-11-17T13:47:23Z<p>Just wondering, why are you doing + 0.5? If the number n is a perfect square rounding will not matter anyway. Other than that your code looks fine.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/295587#2955870Answer by Celestial M Weasel for Fastest way to determine if an integer's square root is an integerCelestial M Weasel2008-11-17T13:48:29Z2008-11-17T13:48:29Z<p>If you want speed, given that your integers are of finite size, I suspect that the quickest way would involve (a) partitioning the parameters by size (e.g. into categories by largest bit set), then checking the value against an array of perfect squares within that range. </p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/295590#2955907Answer by chakrit for Fastest way to determine if an integer's square root is an integerchakrit2008-11-17T13:50:19Z2008-11-17T14:02:11Z<p>I was thinking about the horrible times I've spent in Numerical Analysis course.</p>
<p>And then I remember, there was this function circling around the 'net from the Quake Source code:</p>
<pre><code>float Q_rsqrt( float number )
{
long i;
float x2, y;
const float threehalfs = 1.5F;
x2 = number * 0.5F;
y = number;
i = * ( long * ) &y; // evil floating point bit level hacking
i = 0x5f3759df - ( i >> 1 ); // what the fuck?
y = * ( float * ) &i;
y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
// y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed
#ifndef Q3_VM
#ifdef __linux__
assert( !isnan(y) ); // bk010122 - FPE?
#endif
#endif
return y;
}
</code></pre>
<p>Which basically calculates a square root, using Newton's approximation function (cant remember the exact name).</p>
<p>It should be usable and might even be faster, it's from one of the phenomenal id software's game!</p>
<p>It's written in C++ but it should not be too hard to reuse the same technique in Java once you get the idea:</p>
<p>I originally found it at: <a href="http://www.codemaestro.com/reviews/9" rel="nofollow">http://www.codemaestro.com/reviews/9</a></p>
<p>Newton's method explained at wikipedia: <a href="http://en.wikipedia.org/wiki/Newton%27s_method" rel="nofollow">http://en.wikipedia.org/wiki/Newton%27s_method</a></p>
<p>You can follow the link for more explanation of how it works, but if you don't care much, then this is roughly what I remember from reading the blog and from taking the Numerical Analysis course:</p>
<ul>
<li>the <code>* (long*) &y</code> is basically a fast convert-to-long function so integer operations can be applied on the raw bytes.</li>
<li>the <code>0x5f3759df - (i >> 1);</code> line is a pre-calculated seed value for the approximation function.</li>
<li>the <code>* (float*) &i</code> converts the value back to floating point.</li>
<li>the <code>y = y * ( threehalfs - ( x2 * y * y ) )</code> line bascially iterates the value over the function again.</li>
</ul>
<p>The approximation function gives more precise values the more you iterate the function over the result. In Quake's case, one iteration is "good enough", but if it wasn't for you... then you could add as much iteration as you need.</p>
<p>This should be faster because it reduces the number of division operations done in naive square rooting down to a simple divide by 2 (actually a <code>* 0.5F</code> multiply operation) and replace it with a few fixed number of multiplication operations instead.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/295592#2955925Answer by Jon Skeet for Fastest way to determine if an integer's square root is an integerJon Skeet2008-11-17T13:50:48Z2008-11-17T14:48:48Z<p>If you do a binary chop to try to find the "right" square root, you can fairly easily detect if the value you've got is close enough to tell:</p>
<pre><code>(n+1)^2 = n^2 + 2n + 1
(n-1)^2 = n^2 - 2n + 1
</code></pre>
<p>So having calculated <code>n^2</code>, the options are:</p>
<ul>
<li><code>n^2 = target</code>: done, return true</li>
<li><code>n^2 + 2n + 1 > target > n^2</code> : you're close, but it's not perfect: return false</li>
<li><code>n^2 - 2n + 1 < target < n^2</code> : ditto</li>
<li><code>target < n^2 - 2n + 1</code> : binary chop on a lower <code>n</code></li>
<li><code>target > n^2 + 2n + 1</code> : binary chop on a higher <code>n</code></li>
</ul>
<p>(Sorry, this uses <code>n</code> as your current guess, and <code>target</code> for the parameter. Apologise for the confusion!)</p>
<p>I don't know whether this will be faster or not, but it's worth a try.</p>
<p>EDIT: The binary chop doesn't have to take in the whole range of integers, either <code>(2^x)^2 = 2^(2x)</code>, so once you've found the top set bit in your target (which can be done with a bit-twiddling trick; I forget exactly how) you can quickly get a range of potential answers. Mind you, a naive binary chop is still only going to take up to 31 or 32 iterations.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/295595#2955958Answer by Kibbee for Fastest way to determine if an integer's square root is an integerKibbee2008-11-17T13:51:45Z2008-11-17T13:51:45Z<p>I'm not sure if it would be faster, or even accurate, but you could use <a href="http://www.codemaestro.com/reviews/9" rel="nofollow">John Carmack's Magical Square Root</a>, algorithm to solve the square root faster. You could probably easily test this for all possible 32 bit integers, and validate that you actually got correct results, as it's only an appoximation. However, now that I think about it, using doubles is approximating also, so I'm not sure how that would come into play.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/295613#295613-1Answer by Joel Coehoorn for Fastest way to determine if an integer's square root is an integerJoel Coehoorn2008-11-17T13:57:20Z2008-11-17T14:49:26Z<p>Don't know about fastest, but the simplest is to take the square root in the normal fashion, multiply the result by itself, and see if it matches your original value.</p>
<p>Since we're talking integers here, the fasted would probably involve a collection where you can just make a lookup.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/295659#295659-1Answer by flolo for Fastest way to determine if an integer's square root is an integerflolo2008-11-17T14:18:02Z2008-11-17T14:46:17Z<blockquote>
<p>Premature Optimization Is The Root Of All Evil</p>
</blockquote>
<p>Today FPUs fast and support squarerooting. Also the multiplication is really fast. So you should really check if the this computation is a bottleneck and a newer version is faster. E.g. lookup tables were often used to accelerate trigonometric/sqrt computations. But we have now times, where not the computation is the bottleneck, but the io to the memory. That means that lut are only usefull if you speedup a long calculation (and not something the fpu could compute in one instruction in 100 cycles). If you have a really huge cache, and no other application data which could get into it, you maybe can avoid the mem load penalty, but often it is not really helpfull. Same goes for other approach: most of the iterative/fixpoint/series approaches take for sure longer than the normal fpu sqrt. </p>
<p>To suggest some points to optimize: Sadly you program java, there is very few control for the generated/executed asm code, but to give you some hints were you could look:</p>
<p>Check your CPU instruction manual which floating point operation the fpu supports: common restrictions are:</p>
<p>-only float support, no double </p>
<p>Here you should switch to float instead of double (I know no java std api function which does the sqrt on the float instead of double)</p>
<p>-no support of sqrt, but of 1/sqrt</p>
<p>In this case you should rewrite the code (I hope your java interpreter is smart enough to utilize this), e.g. as:</p>
<pre><code>reci_sqrt = 1.0 / Math.sqrt(number); // gets calculated in one asm instruction
is_sqrt = Math.round(number * reci_sqrt * reci_sqrt) == 1;
</code></pre>
<p>(In this example you would trade a division for a multiplication, if its really worth depends on your cpu))</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/295678#29567825Answer by John D. Cook for Fastest way to determine if an integer's square root is an integerJohn D. Cook2008-11-17T14:27:17Z2009-01-27T20:35:45Z<p>You'll have to do some benchmarking. The best algorithm will depend on the distribution of your inputs.</p>
<p>Your algorithm may be nearly optimal, but you might want to do a quick check to rule out some possibilities before calling your square root routine. For example, look at the last digit of your number in hex by doing a bit-wise "and." Perfect squares can only end in 0, 1, 4, or 9 in base 16, So for 75% of your inputs (assuming they are uniformly distributed) you can avoid a call to the square root in exchange for some very fast bit twiddling.</p>
<p>Kip benchmarked the following code implementing the hex trick. When testing numbers 1 through 100,000,000, this code ran twice as fast as the original.</p>
<pre><code>public final static boolean isPerfectSquare(long n)
{
if (n < 0)
return false;
switch((int)(n & 0xF))
{
case 0: case 1: case 4: case 9:
long tst = (long)Math.sqrt(n);
return tst*tst == n;
default:
return false;
}
}
</code></pre>
<p>When I tested the analogous code in C++, it actually ran slower than the original. However, when I eliminated the switch statement, the hex trick once again make the code twice as fast.</p>
<pre><code>int isPerfectSquare(int n)
{
int h = n & 0xF; // h is the last hex "digit"
if (h > 9)
return 0;
// Use lazy evaluation to jump out of the if statement as soon as possible
if (h != 2 && h != 3 && h != 5 && h != 6 && h != 7 && h != 8)
{
int t = (int) floor( sqrt((double) n) + 0.5 );
return t*t == n;
}
return 0;
}
</code></pre>
<p>Eliminating the switch statement had little effect on the C# code.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/295761#2957616Answer by Bill the Lizard for Fastest way to determine if an integer's square root is an integerBill the Lizard2008-11-17T14:58:24Z2008-11-17T15:04:49Z<p>It should be much faster to use <a href="http://en.wikipedia.org/wiki/Newton%27s_method" rel="nofollow">Newton's method</a> to calculate the <a href="http://en.wikipedia.org/wiki/Integer_square_root" rel="nofollow">Integer Square Root</a>, then square this number and check, as you do in your current solution. Newton's method is the basis for the Carmack solution mentioned in some other answers. You should be able to get a faster answer since you're only interested in the integer part of the root, allowing you to stop the approximation algorithm sooner.</p>
<p>Another optimization that you can try: If the <a href="http://en.wikipedia.org/wiki/Digital_root" rel="nofollow">Digital Root</a> of a number doesn't end in
1, 4, 7, or 9 the number is <strong>not</strong> a perfect square. This can be used as a quick way to eliminate 60% of your inputs before applying the slower square root algorithm.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/297350#2973500Answer by Elijah for Fastest way to determine if an integer's square root is an integerElijah2008-11-17T23:29:58Z2008-11-17T23:29:58Z<p>If speed is a concern, why not partition off the most commonly used set of inputs and their values to a lookup table and then do whatever optimized magic algorithm you have come up with for the exceptional cases?</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/299183#2991835Answer by mrzl for Fastest way to determine if an integer's square root is an integermrzl2008-11-18T15:57:44Z2008-11-18T15:57:44Z<blockquote>
<p>I want this function to work with all
positive 64-bit signed integers</p>
</blockquote>
<p>Math.sqrt() works with doubles as input parameters, so you won't get accurate results for integers bigger than 2^53.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/300646#3006460Answer by Mike Dunlavey for Fastest way to determine if an integer's square root is an integerMike Dunlavey2008-11-19T00:18:07Z2008-11-19T00:18:07Z<p>I would have to ask (maybe the answer is NO) couldn't you just enumerate the squares, rather than enumerate the numbers and ask if they are squares. (i.e. think outside the box)</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/327134#3271342Answer by Hugh Allen for Fastest way to determine if an integer's square root is an integerHugh Allen2008-11-29T03:52:36Z2008-11-29T03:52:36Z<p>It's been pointed out that the last <code>d</code> digits of a perfect square can only take on certain values. The last <code>d</code> digits (in base <code>b</code>) of a number <code>n</code> is the same as the remainder when <code>n</code> is divided by <code>b</code><sup><code>d</code></sup>, ie. in C notation <code>n % pow(b, d)</code>.</p>
<p>This can be generalized to any modulus <code>m</code>, ie. <code>n % m</code> can be used to rule out some percentage of numbers from being perfect squares. The modulus you are currently using is 64, which allows 12, ie. 19% of remainders, as possible squares. With a little coding I found the modulus 110880, which allows only 2016, ie. 1.8% of remainders as possible squares. So depending on the cost of a modulus operation (ie. division) and a table lookup versus a square root on your machine, using this modulus might be faster.</p>
<p>By the way if Java has a way to store a packed array of bits for the lookup table, don't use it. 110880 32-bit words is not much RAM these days and fetching a machine word is going to be faster than fetching a single bit.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/333510#3335100Answer by ckarmann for Fastest way to determine if an integer's square root is an integerckarmann2008-12-02T10:00:22Z2008-12-02T10:00:22Z<p>Just for the record, another approach is to use the prime decomposition. If every factor of the decomposition is even, then the number is a perfect square. So what you want is to see if a number can be decomposed as a product of squares of prime numbers. Of course, you don't need to obtain such a decomposition, just to see if it exists.</p>
<p>First build a table of squares of prime numbers which are lower than 2^32. This is far smaller than a table of all integers up to this limit.</p>
<p>A solution would then be like this:</p>
<pre><code>boolean isPerfectSquare(long number)
{
if (number < 0) return false;
if (number < 2) return true;
for (int i = 0; ; i++)
{
long square = squareTable[i];
if (square > number) return false;
while (number % square == 0)
{
number /= square;
}
if (number == 1) return true;
}
}
</code></pre>
<p>I guess it's a bit cryptic. What it does is checking in every step that the square of a prime number divide the input number. If it does then it divides the number by the square as long as it is possible, to remove this square from the prime decomposition.
If by this process, we came to 1, then the input number was a decomposition of square of prime numbers. If the square becomes larger than the number itself, then there is no way this square, or any larger squares, can divide it, so the number can not be a decomposition of squares of prime numbers.</p>
<p>Given nowadays' sqrt done in hardware and the need to compute prime numbers here, I guess this solution is way slower. But it should give better results than solution with sqrt which won't work over 2^54, as says mrzl <a href="#299183" rel="nofollow">in his answer</a>.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/342996#3429962Answer by BobbyShaftoe for Fastest way to determine if an integer's square root is an integerBobbyShaftoe2008-12-05T05:36:38Z2008-12-05T05:36:38Z<p>For performance, you very often have to do some compromsies. Others have expressed various methods, however, you noted Carmack's hack was faster up to certain values of N. Then, you should check the "n" and if it is less than that number N, use Carmack's hack, else use some other method described in the answers here.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/405554#4055542Answer by David Lehavi for Fastest way to determine if an integer's square root is an integerDavid Lehavi2009-01-01T22:12:38Z2009-01-02T08:17:46Z<p>You should get rid of the 2-power part of N right from the start.</p>
<p><strong>2nd Edit</strong>
The magical expression for m below should be</p>
<pre><code>m = N - (N & (N-1));
</code></pre>
<p>and not as written</p>
<p><strong>End of 2nd edit</strong></p>
<pre><code>m = N & (N-1); // the lawest bit of N
N /= m;
byte = N & 0x0F;
if ((m % 2) || (byte !=1 && byte !=9))
return false;
</code></pre>
<p><strong>1st Edit:</strong></p>
<p>Minor improvement:</p>
<pre><code>m = N & (N-1); // the lawest bit of N
N /= m;
if ((m % 2) || (N & 0x07 != 1))
return false;
</code></pre>
<p><strong>End of 1st edit</strong></p>
<p>Now continue as usual. This way, by the time you get to the floating point part, you already got rid of all the numbers whose 2-power part is odd (about half), and then you only consider 1/8 of whats left. I.e. you run the floating point part on 6% of the numbers.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/405578#4055781Answer by Brent.Longborough for Fastest way to determine if an integer's square root is an integerBrent.Longborough2009-01-01T22:27:43Z2009-01-02T11:25:59Z<p>This a rework from decimal to binary of the old Marchant calculator algorithm (sorry, I don't have a reference), in Ruby, adapted specifically for this question:</p>
<pre><code>def isexactsqrt(v)
value = v.abs
residue = value
root = 0
onebit = 1
onebit <<= 8 while (onebit < residue)
onebit >>= 2 while (onebit > residue)
while (onebit > 0)
x = root + onebit
if (residue >= x) then
residue -= x
root = x + onebit
end
root >>= 1
onebit >>= 2
end
return (residue == 0)
end
</code></pre>
<p>Here's a workup of something similar (please don't vote me down for coding style/smells or clunky O/O - it's the algorithm that counts, and C++ is not my home language). In this case, we're looking for residue == 0:</p>
<pre><code>#include <iostream>
using namespace std;
typedef unsigned long long int llint;
class ISqrt { // Integer Square Root
llint value; // Integer whose square root is required
llint root; // Result: floor(sqrt(value))
llint residue; // Result: value-root*root
llint onebit, x; // Working bit, working value
public:
ISqrt(llint v = 2) { // Constructor
Root(v); // Take the root
};
llint Root(llint r) { // Resets and calculates new square root
value = r; // Store input
residue = value; // Initialise for subtracting down
root = 0; // Clear root accumulator
onebit = 1; // Calculate start value of counter
onebit <<= (8*sizeof(llint)-2); // Set up counter bit as greatest odd power of 2
while (onebit > residue) {onebit >>= 2; }; // Shift down until just < value
while (onebit > 0) {
x = root ^ onebit; // Will check root+1bit (root bit corresponding to onebit is always zero)
if (residue >= x) { // Room to subtract?
residue -= x; // Yes - deduct from residue
root = x + onebit; // and step root
};
root >>= 1;
onebit >>= 2;
};
return root;
};
llint Residue() { // Returns residue from last calculation
return residue;
};
};
int main() {
llint big, i, q, r, v, delta;
big = 0; big = (big-1); // Kludge for "big number"
ISqrt b; // Make q sqrt generator
for ( i = big; i > 0 ; i /= 7 ) { // for several numbers
q = b.Root(i); // Get the square root
r = b.Residue(); // Get the residue
v = q*q+r; // Recalc original value
delta = v-i; // And diff, hopefully 0
cout << i << ": " << q << " ++ " << r << " V: " << v << " Delta: " << delta << "\n";
};
return 0;
};
</code></pre>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/424936#42493676Answer by A. Rex for Fastest way to determine if an integer's square root is an integerA. Rex2009-01-08T16:32:42Z2009-01-08T16:39:16Z<p>I figured out a method that works ~35% faster than your 6bits+Carmack+sqrt code, at least with my CPU (x86) and programming language (C/C++). Your results may vary, especially because I don't know how the Java factor will play out.</p>
<p>My approach is threefold:</p>
<ol>
<li>First, filter out obvious answers. This includes negative numbers and looking at the last 4 bits. (I found looking at the last six didn't help.) I also answer yes for 0. (In reading the code below, note that my input is <code>int64 x</code>.)
<pre><code>if( x < 0 || (x&2) || ((x & 7) == 5) || ((x & 11) == 8) )
return false;
if( x == 0 )
return true;</code></pre>
</li>
<li>Next, check if it's a square modulo 255 = 3 * 5 * 17. Because that's a product of three distinct primes, only about 1/8 of the residues mod 255 are squares. However, in my experience, calling the modulo operator (%) costs more than the benefit one gets, so I use bit tricks involving 255 = 2^8-1 to compute the residue. (For better or worse, I am not using the trick of reading individual bytes out of a word, only bitwise-and and shifts.)
<pre><code>int64 y = x;
y = (y & 4294967295LL) + (y >> 32);
y = (y & 65535) + (y >> 16);
y = (y & 255) + ((y >> 8) & 255) + (y >> 16);
// At this point, y is between 0 and 511. More code can reduce it farther.
</pre></code>
To actually check if the residue is a square, I look up the answer in a precomputed table.
<pre><code>if( bad255[y] )
return false;
// However, I just use a table of size 512
</code></pre>
</li>
<li>Finally, try to compute the square root using a method similar to <a href="http://en.wikipedia.org/wiki/Hensel%27s_lemma" rel="nofollow">Hensel's lemma</a>. (I don't think it's applicable directly, but it works with some modifications.) Before doing that, I divide out all powers of 4 with a binary search:
<pre><code>if((x & 4294967295LL) == 0)
x >>= 32;
if((x & 65535) == 0)
x >>= 16;
if((x & 255) == 0)
x >>= 8;
if((x & 15) == 0)
x >>= 4;
if((x & 3) == 0)
x >>= 2;</code></pre>
At this point, for our number to be a square, it must be 1 mod 8.
<pre><code>if((x & 7) != 1)
return false;</code></pre>
The basic structure of Hensel's lemma is the following. (Note: untested code; if it doesn't work, try t=2 or 8.)
<pre><code>int64 t = 4, r = 1;
t <<= 1; r += ((x - r * r) & t) >> 1;
t <<= 1; r += ((x - r * r) & t) >> 1;
t <<= 1; r += ((x - r * r) & t) >> 1;
// Repeat until t is 2^33 or so. Use a loop if you want.</code></pre>
The idea is that at each iteration, you add one bit onto r, the "current" square root of x; each square root is accurate modulo a larger and larger power of 2, namely t/2. At the end, r and t/2-r will be square roots of x modulo t/2. (Note that if r is a square root of x, then so is -r. This is true even modulo numbers, but beware, modulo some numbers, things can have even more than 2 square roots; notably, this includes powers of 2.) Because our actual square root is less than 2^32, at that point we can actually just check if r or t/2-r are real square roots. In my actual code, I use the following modified loop:
<pre><code>int64 r, t, z;
r = start[(x >> 3) & 1023];
do {
z = x - r * r;
if( z == 0 )
return true;
if( z < 0 )
return false;
t = z & (-z);
r += (z & t) >> 1;
if( r > (t >> 1) )
r = t - r;
} while( t <= (1LL << 33) );</code></pre>
The speedup here is obtained in three ways: precomputed start value (equivalent to ~10 iterations of the loop), earlier exit of the loop, and skipping some t values. For the last part, I look at <code>z = r - x * x</code>, and set t to be the largest power of 2 dividing z with a bit trick. This allows me to skip t values that wouldn't have affected the value of r anyway. The precomputed start value in my case picks out the "smallest positive" square root modulo 8192.
</li>
</ol>
<p>Even if this code doesn't work faster for you, I hope you enjoy some of the ideas it contains. Complete, tested code follows, including the precomputed tables.</p>
<pre><code>typedef signed long long int int64;
int start[1024] =
{1,3,1769,5,1937,1741,7,1451,479,157,9,91,945,659,1817,11,
1983,707,1321,1211,1071,13,1479,405,415,1501,1609,741,15,339,1703,203,
129,1411,873,1669,17,1715,1145,1835,351,1251,887,1573,975,19,1127,395,
1855,1981,425,453,1105,653,327,21,287,93,713,1691,1935,301,551,587,
257,1277,23,763,1903,1075,1799,1877,223,1437,1783,859,1201,621,25,779,
1727,573,471,1979,815,1293,825,363,159,1315,183,27,241,941,601,971,
385,131,919,901,273,435,647,1493,95,29,1417,805,719,1261,1177,1163,
1599,835,1367,315,1361,1933,1977,747,31,1373,1079,1637,1679,1581,1753,1355,
513,1539,1815,1531,1647,205,505,1109,33,1379,521,1627,1457,1901,1767,1547,
1471,1853,1833,1349,559,1523,967,1131,97,35,1975,795,497,1875,1191,1739,
641,1149,1385,133,529,845,1657,725,161,1309,375,37,463,1555,615,1931,
1343,445,937,1083,1617,883,185,1515,225,1443,1225,869,1423,1235,39,1973,
769,259,489,1797,1391,1485,1287,341,289,99,1271,1701,1713,915,537,1781,
1215,963,41,581,303,243,1337,1899,353,1245,329,1563,753,595,1113,1589,
897,1667,407,635,785,1971,135,43,417,1507,1929,731,207,275,1689,1397,
1087,1725,855,1851,1873,397,1607,1813,481,163,567,101,1167,45,1831,1205,
1025,1021,1303,1029,1135,1331,1017,427,545,1181,1033,933,1969,365,1255,1013,
959,317,1751,187,47,1037,455,1429,609,1571,1463,1765,1009,685,679,821,
1153,387,1897,1403,1041,691,1927,811,673,227,137,1499,49,1005,103,629,
831,1091,1449,1477,1967,1677,697,1045,737,1117,1737,667,911,1325,473,437,
1281,1795,1001,261,879,51,775,1195,801,1635,759,165,1871,1645,1049,245,
703,1597,553,955,209,1779,1849,661,865,291,841,997,1265,1965,1625,53,
1409,893,105,1925,1297,589,377,1579,929,1053,1655,1829,305,1811,1895,139,
575,189,343,709,1711,1139,1095,277,993,1699,55,1435,655,1491,1319,331,
1537,515,791,507,623,1229,1529,1963,1057,355,1545,603,1615,1171,743,523,
447,1219,1239,1723,465,499,57,107,1121,989,951,229,1521,851,167,715,
1665,1923,1687,1157,1553,1869,1415,1749,1185,1763,649,1061,561,531,409,907,
319,1469,1961,59,1455,141,1209,491,1249,419,1847,1893,399,211,985,1099,
1793,765,1513,1275,367,1587,263,1365,1313,925,247,1371,1359,109,1561,1291,
191,61,1065,1605,721,781,1735,875,1377,1827,1353,539,1777,429,1959,1483,
1921,643,617,389,1809,947,889,981,1441,483,1143,293,817,749,1383,1675,
63,1347,169,827,1199,1421,583,1259,1505,861,457,1125,143,1069,807,1867,
2047,2045,279,2043,111,307,2041,597,1569,1891,2039,1957,1103,1389,231,2037,
65,1341,727,837,977,2035,569,1643,1633,547,439,1307,2033,1709,345,1845,
1919,637,1175,379,2031,333,903,213,1697,797,1161,475,1073,2029,921,1653,
193,67,1623,1595,943,1395,1721,2027,1761,1955,1335,357,113,1747,1497,1461,
1791,771,2025,1285,145,973,249,171,1825,611,265,1189,847,1427,2023,1269,
321,1475,1577,69,1233,755,1223,1685,1889,733,1865,2021,1807,1107,1447,1077,
1663,1917,1129,1147,1775,1613,1401,555,1953,2019,631,1243,1329,787,871,885,
449,1213,681,1733,687,115,71,1301,2017,675,969,411,369,467,295,693,
1535,509,233,517,401,1843,1543,939,2015,669,1527,421,591,147,281,501,
577,195,215,699,1489,525,1081,917,1951,2013,73,1253,1551,173,857,309,
1407,899,663,1915,1519,1203,391,1323,1887,739,1673,2011,1585,493,1433,117,
705,1603,1111,965,431,1165,1863,533,1823,605,823,1179,625,813,2009,75,
1279,1789,1559,251,657,563,761,1707,1759,1949,777,347,335,1133,1511,267,
833,1085,2007,1467,1745,1805,711,149,1695,803,1719,485,1295,1453,935,459,
1151,381,1641,1413,1263,77,1913,2005,1631,541,119,1317,1841,1773,359,651,
961,323,1193,197,175,1651,441,235,1567,1885,1481,1947,881,2003,217,843,
1023,1027,745,1019,913,717,1031,1621,1503,867,1015,1115,79,1683,793,1035,
1089,1731,297,1861,2001,1011,1593,619,1439,477,585,283,1039,1363,1369,1227,
895,1661,151,645,1007,1357,121,1237,1375,1821,1911,549,1999,1043,1945,1419,
1217,957,599,571,81,371,1351,1003,1311,931,311,1381,1137,723,1575,1611,
767,253,1047,1787,1169,1997,1273,853,1247,413,1289,1883,177,403,999,1803,
1345,451,1495,1093,1839,269,199,1387,1183,1757,1207,1051,783,83,423,1995,
639,1155,1943,123,751,1459,1671,469,1119,995,393,219,1743,237,153,1909,
1473,1859,1705,1339,337,909,953,1771,1055,349,1993,613,1393,557,729,1717,
511,1533,1257,1541,1425,819,519,85,991,1693,503,1445,433,877,1305,1525,
1601,829,809,325,1583,1549,1991,1941,927,1059,1097,1819,527,1197,1881,1333,
383,125,361,891,495,179,633,299,863,285,1399,987,1487,1517,1639,1141,
1729,579,87,1989,593,1907,839,1557,799,1629,201,155,1649,1837,1063,949,
255,1283,535,773,1681,461,1785,683,735,1123,1801,677,689,1939,487,757,
1857,1987,983,443,1327,1267,313,1173,671,221,695,1509,271,1619,89,565,
127,1405,1431,1659,239,1101,1159,1067,607,1565,905,1755,1231,1299,665,373,
1985,701,1879,1221,849,627,1465,789,543,1187,1591,923,1905,979,1241,181};
bool bad255[512] =
{0,0,1,1,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,0,1,1,1,1,0,1,
1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,0,1,1,1,
0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1,1,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,
1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,1,1,1,
1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,
1,1,1,1,1,1,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,
1,1,1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,
1,0,1,1,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,
0,0,1,1,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,0,1,1,1,1,0,1,
1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,0,1,1,1,
0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1,1,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,
1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,1,1,1,1,1,
1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,
1,1,1,1,1,1,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,
1,1,1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,
1,0,1,1,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,
0,0};
inline bool square( int64 x ) {
// Quickfail
if( x < 0 || (x&2) || ((x & 7) == 5) || ((x & 11) == 8) )
return false;
if( x == 0 )
return true;
// Check mod 255 = 3 * 5 * 17, for fun
int64 y = x;
y = (y & 4294967295LL) + (y >> 32);
y = (y & 65535) + (y >> 16);
y = (y & 255) + ((y >> 8) & 255) + (y >> 16);
if( bad255[y] )
return false;
// Divide out powers of 4 using binary search
if((x & 4294967295LL) == 0)
x >>= 32;
if((x & 65535) == 0)
x >>= 16;
if((x & 255) == 0)
x >>= 8;
if((x & 15) == 0)
x >>= 4;
if((x & 3) == 0)
x >>= 2;
if((x & 7) != 1)
return false;
// Compute sqrt using something like Hensel's lemma
int64 r, t, z;
r = start[(x >> 3) & 1023];
do {
z = x - r * r;
if( z == 0 )
return true;
if( z < 0 )
return false;
t = z & (-z);
r += (z & t) >> 1;
if( r > (t >> 1) )
r = t - r;
} while( t <= (1LL >> 33) );
return false;
}</code></pre>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/574455#5744550Answer by paulmurray for Fastest way to determine if an integer's square root is an integerpaulmurray2009-02-22T06:22:01Z2009-02-22T06:22:01Z<p>It ought to be possible to pack the 'cannot be a perfect square if the last X digits are N' much more efficiently than that! I'll use java 32 bit ints, and produce enough data to check the last 16 bits of the number - that's 2048 hexadecimal int values.</p>
<p>...</p>
<p>Ok. Either I have run into some number theory that is a little beyond me, or there is a bug in my code. In any case, here is the code:</p>
<pre><code>public static void main(String[] args) {
final int BITS = 16;
BitSet foo = new BitSet();
for(int i = 0; i< (1<<BITS); i++) {
int sq = (i*i);
sq = sq & ((1<<BITS)-1);
foo.set(sq);
}
System.out.println("int[] mayBeASquare = {");
for(int i = 0; i< 1<<(BITS-5); i++) {
int kk = 0;
for(int j = 0; j<32; j++) {
if(foo.get((i << 5) | j)) {
kk |= 1<<j;
}
}
System.out.print("0x" + Integer.toHexString(kk) + ", ");
if(i%8 == 7) System.out.println();
}
System.out.println("};");
}
</code></pre>
<p>and here are the results:</p>
<pre><code>int[] mayBeASquare = {
0x2030213, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030213, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020213, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212,
0x2030212, 0x2020212, 0x2020212, 0x2020212, 0x2030212, 0x2020212, 0x2020212, 0x2020212
};
</code></pre>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/634473#6344730Answer by Ben for Fastest way to determine if an integer's square root is an integerBen2009-03-11T13:18:14Z2009-03-11T13:25:39Z<p>Regarding the Carmac method, it seems like it would be quite easy just to iterate once more, which should double the number of digits of accuracy. It is, after all, an extremely truncated iterative method -- Newton's, with a very good first guess.</p>
<p>Regarding your current best, I see two micro-optimizations:</p>
<ul>
<li>move the check vs. 0 after the check using mod255</li>
<li>rearrange the dividing out powers of four to skip all the checks for the usual (75%) case. </li>
</ul>
<p>I.e:</p>
<pre><code>// Divide out powers of 4 using binary search
if((n & 0x3L) == 0) {
n >>=2;
if((n & 0xffffffffL) == 0)
n >>= 32;
if((n & 0xffffL) == 0)
n >>= 16;
if((n & 0xffL) == 0)
n >>= 8;
if((n & 0xfL) == 0)
n >>= 4;
if((n & 0x3L) == 0)
n >>= 2;
}
</code></pre>
<p>Even better might be a simple</p>
<pre><code>while ((n & 0x03L) == 0) n >>= 2;
</code></pre>
<p>Obviously, it would be interesting to know how many numbers get culled at each checkpoint -- I rather doubt the checks are truly independent, which makes things tricky.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/634494#6344940Answer by hydrodog for Fastest way to determine if an integer's square root is an integerhydrodog2009-03-11T13:25:05Z2009-03-11T13:37:53Z<p>The sqrt call is not perfectly accurate, as has been mentioned, but it's interesting and instructive that it doesn't blow away the other answers in terms of speed. After all, the sequence of assembly language instructions for a sqrt is tiny. Intel has a hardware instruction, which isn't used by Java I believe because it doesn't conform to IEEE.</p>
<p>So why is it slow? Because Java is actually calling a C routine through JNI, and it's actually slower to do so than to call a Java subroutine, which itself is slower than doing it inline. This is very annoying, and Java should have come up with a better solution, ie building in floating point library calls if necessary. Oh well.</p>
<p>In C++, I suspect all the complex alternatives would lose on speed, but I haven't checked them all.
What I did, and what Java people will find usefull, is a simple hack, an extension of the special case testing suggested by A. Rex. Use a single long value as a bit array, which isn't bounds checked. That way, you have 64 bit boolean lookup.</p>
<pre><code>typedef unsigned long long UVLONG
UVLONG pp1,pp2;
void init2() {
for (int i = 0; i < 64; i++) {
for (int j = 0; j < 64; j++)
if (isPerfectSquare(i * 64 + j)) {
pp1 |= (1 << j);
pp2 |= (1 << i);
break;
}
}
cout << "pp1=" << pp1 << "," << pp2 << "\n";
}
inline bool isPerfectSquare5(UVLONG x) {
return pp1 & (1 << (x & 0x3F)) ? isPerfectSquare(x) : false;
}
</code></pre>
<p>The routine isPerfectSquare5 runs in about 1/3 the time on my core2 duo machine. I suspect that further tweaks along the same lines could reduce the time further on average, but every time you check, you are trading off more testing for more eliminating, so you can't go too much farther on that road.</p>
<p>Certainly, rather than having a separate test for negative, you could check the high 6 bits the same way.</p>
<p>Note that all I'm doing is eliminating possible squares, but when I have a potential case I have to call the original, inlined isPerfectSquare.</p>
<p>The init2 routine is called once to initialize the static values of pp1 and pp2.
Note that in my implementation in C++, I'm using unsigned long long, so since you're signed, you'd have to use the >>> operator.</p>
<p>There is no intrinsic need to bounds check the array, but Java's optimizer has to figure this stuff out pretty quickly, so I don't blame them for that.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/682088#6820880Answer by thebearinboulder for Fastest way to determine if an integer's square root is an integerthebearinboulder2009-03-25T15:23:05Z2009-03-25T15:23:05Z<p>Project Euler is mentioned in the tags and many of the problems in it require checking numbers >> 2^64. Most of the optimizations mentioned above don't work easily when you are working with an 80 byte buffer.</p>
<p>I used java BigInteger and a slightly modified version of Newton's method, one that works better with integers. The problem was that exact squares n^2 converged to (n-1) instead of n because n^2-1 = (n-1)(n+1) and the final error was just one step below the final divisor and the algorithm terminated. It was easy to fix by adding one to the original argument before computing the error. (Add two for cube roots, etc.)</p>
<p>One nice attribute of this algorithm is that you can immediately tell if the number is a perfect square - the final error (not correction) in Newton's method will be zero. A simple modification also lets you quickly calculate floor(sqrt(x)) instead of the closest integer. This is handy with several Euler problems.</p>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/905031#9050310Answer by hegjon for Fastest way to determine if an integer's square root is an integerhegjon2009-05-25T01:22:28Z2009-05-25T01:38:24Z<p>I like the idea to use an almost correct method on some of the input. Here is a version with a higher "offset". The code seems to work and passes my simple test case.</p>
<p>Just replace your:</p>
<pre><code>if(n < 410881L){...}
</code></pre>
<p>code with this one:</p>
<pre><code>if (n < 11043908100L) {
//John Carmack hack, converted to Java.
// See: http://www.codemaestro.com/reviews/9
int i;
float x2, y;
x2 = n * 0.5F;
y = n;
i = Float.floatToRawIntBits(y);
//using the magic number from
//http://www.lomont.org/Math/Papers/2003/InvSqrt.pdf
//since it more accurate
i = 0x5f375a86 - (i >> 1);
y = Float.intBitsToFloat(i);
y = y * (1.5F - (x2 * y * y));
y = y * (1.5F - (x2 * y * y)); //Newton iteration, more accurate
sqrt = Math.round(1.0F / y);
} else {
//Carmack hack gives incorrect answer for n >= 11043908100.
sqrt = (long) Math.sqrt(n);
}
</code></pre>
http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/1470707#14707070Answer by dstibbe for Fastest way to determine if an integer's square root is an integerdstibbe2009-09-24T09:46:57Z2009-09-24T09:46:57Z<p>"I'm looking for the fastest way to determine if a long value is a perfect square (i.e. its square root is another integer)." </p>
<p>The answers are impressive, but I failed to see a simple check :</p>
<p>check whether the first number on the right of the long it a member of the set (0,1,4,5,6,9) . If it is not, then it cannot possibly be a 'perfect square' .</p>
<p>eg.</p>
<p>4567 - cannot be a perfect square.</p>