-
Notifications
You must be signed in to change notification settings - Fork 5
/
CommonPrimeDivisors.php
63 lines (50 loc) · 1.01 KB
/
CommonPrimeDivisors.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
58
59
60
61
62
63
<?php
/**
* CommonPrimeDivisors
*
* Check whether two numbers have the same prime divisors.
*/
include '../../Tests.class.php';
function solution($A, $B) {
$sizeOfA = sizeof($A);
$counter = 0;
for ($i = 0; $i < $sizeOfA; $i++) {
$a = $A[$i];
$b = $B[$i];
$gdc = gdc($a, $b);
$a = removeCommonPrimeDivisors($a, $gdc);
if ($a !== 1) {
continue;
}
$b = removeCommonPrimeDivisors($b, $gdc);
if ($b === 1) {
$counter++;
}
}
return $counter;
}
function removeCommonPrimeDivisors($a, $b)
{
while ($a !== 1) {
$gdc = gdc($a, $b);
if ($gdc === 1) {
break;
}
$a /= $gdc;
}
return $a;
}
function gdc($a, $b)
{
if ($a % $b == 0) {
return $b;
} else {
return gdc($b, $a % $b);
}
}
$test = new Tests('CommonPrimeDivisors');
$name = 'example';
$A = [15, 10, 3];
$B = [75, 30, 5];
$result = 1;
$test->run([$A, $B], $result, $name);