8

これは何よりもパズルです。私は実際に解決策を見つけましたが、インターネット接続が失われたと思ったほど遅いです (以下を参照)。

問題は次のとおりです。

次のような数値の配列があるとしましょう。

$numbers_array = array(1, 2, 3, 4, 5, 6, 7, 8, 9);

また、次のように変数に格納されたいくつかの数値があるとしましょう。

$sum = 15;
$sum2 = 24;
$sum3 = 400;

$numbers_arrayの数値のいずれかを合計して合計を形成できる場合に true を返す関数を作成しようとしています(それぞれが 1 回だけ使用されます)。

function is_summable($array_of_nums, $sum_to_check) {
    //What to put here?
}

var_dump(is_summable($numbers_array, $sum));
var_dump(is_summable($numbers_array, $sum2));
var_dump(is_summable($numbers_array, $sum3));

上記の出力は次のとおりです。

bool(true)
bool(true)
bool(false)

7 + 8 = 15、7 + 8 + 9 = 24 なので、1 ~ 9 の組み合わせで 200 を作成することはできません。

これが私の非常に遅い解決策です:

function is_summable($numbers, $sum) {
    //Sort provided numbers and assign numerical keys.
    asort($numbers);
    $numbers = array_values($numbers);

    //Var for additions and var for number of provided numbers.
    $total = 0;
    $numbers_length = count($numbers);

    //Empty var to fill below.
    $code = '';

    //Loop and add for() loops.
    for ($i = 0; $i < $numbers_length; $i++) {
        $code .= 'for ($n' . $i . ' = 0; $n' . $i . ' < ' . $numbers_length . '; $n' . $i . '++) {';

        if ($i != 0) {
            $code .= 'if ($n' . $i . ' != $n' . ($i - 1) . ') {';
        }

        $code .= '$total += intval($numbers[$n' . $i . ']);';
        $code .= 'if ($total == $sum) {';
        $code .= 'return true;';
        $code .= '}';
    }

    //Add ending bracket for for() loops above.
    for ($l = 0; $l < $numbers_length; $l++) {
        $code .= '$total -= intval($numbers[$n' . $i . ']);';
        if ($l != 0) {
            $code .= '}';
        }
        $code .= '}';
    }

    //Finally, eval the code.
    eval($code);

    //If "true" not returned above, return false.
    return false;
}

$num_arr = array(1,2,3,4,5,6,7,8,9);
var_dump(is_summable($num_arr, 24));

http://pastebin.com/1nawuwXK

いつものように、助けていただければ幸いです!!

4

1 に答える 1

3

あなたの問題は実際には標準的なアルゴリズムの問​​題です(Jonがナップザックの問題について言及したように)、より具体的にはSubset sum problemです。多項式時間で解くことができます ( wiki ページを見てください)。

擬似コード:

initialize a list S to contain one element 0.
for each i from 1 to N do
  let T be a list consisting of xi + y, for all y in S
  let U be the union of T and S
  sort U
  make S empty 
  let y be the smallest element of U 
  add y to S 
  for each element z of U in increasing order do
     //trim the list by eliminating numbers close to one another
     //and throw out elements greater than s
    if y + cs/N < z ≤ s, set y = z and add z to S 
if S contains a number between (1 − c)s and s, output yes, otherwise no
于 2012-08-13T10:22:53.597 に答える