Project Euler にチャレンジ:Problem 67 PHPでの解答

← Problem 66  Problem 68 →
Problem 18 のPHP での解き方と全く同じプログラムで、求めることが可能
<?php

// ファイルの読み込み
$file = file_get_contents("problem67.txt");
$array1 = explode("\n",trim($file,"\n"));
$array2 = array();
foreach($array1 as $k => $v)
{
	@$array2[$k] = explode(" ",$v);
}

$sum = array(array());

$count = count($array1);

for($i = 0 ; $i < $count ; $i++)
{
	for($j = 0 ; $j <= $i ; $j++)
	{
		$tmp1 = @$sum[$i - 1][$j] + $array2[$i][$j];
		$tmp2 = @$sum[$i - 1][$j - 1] + $array2[$i][$j];
		if($tmp1 < $tmp2)
		{
			$sum[$i][$j] = $tmp2;
		}
		else
		{
			$sum[$i][$j] = $tmp1;
		}
	}
}

$answer = max($sum[$count -1]);
echo $answer;

?>
問題文