-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoubleSquares.php
57 lines (52 loc) · 1.27 KB
/
doubleSquares.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
* Created by PhpStorm.
* User: caldwecr
* Date: 2/6/14
* Time: 3:51 PM
* Copyright Cympel Inc
*/
if($argc > 1) {
$input = file_get_contents($argv[1]);
// Split the lines
$input_values = explode(PHP_EOL, $input);
echo runDoubleSquares($input_values);
}
function runDoubleSquares($input_values)
{
$numberOfTestCases = $input_values[0];
unset($input_values[0]);
$toReturn = '';
foreach($input_values as $key => $value) {
$toReturn .= calculateNumberOfDoubleSquaresDijkstra($value) . "\n";
}
return $toReturn;
}
/**
* @param int $value
* @return int
*
* Credit given to Edsgar Dijkstra re: @link http://stackoverflow.com/questions/19339987/double-squares-facebook-hacker-cup-2011-in-java
*/
function calculateNumberOfDoubleSquaresDijkstra($value)
{
// Find integer square root
$sqrt = (int) sqrt((int) $value);
// Define x, y, and total and instantiate with initial values
$x = $sqrt;
$y = 0;
$total = 0;
while($x >= $y) {
$leftSide = $x * $x + $y * $y;
if($leftSide < $value) {
$y++;
} else if($leftSide > $value) {
$x--;
} else if($leftSide == $value) {
$total++;
$x--;
$y++;
}
}
return $total;
}