PHPの最小生成木の(prim)は、一つの問題を例に挙げます.



Truck History
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 14955
Accepted: 5719
Description
Advanced Cargo Movement, Ltd. uses trucks of different types. Some trucks are used for vegetable delivery, other for furniture, or for bricks. The company has its own code describing each type of a truck. The code is simply a string of exactly seven lowercase letters (each letter on each position has a very special meaning but that is unimportant for this task). At the beginning of company's history, just a single truck type was used but later other types were derived from it, then from the new types another types were derived, and so on.   Today, ACM is rich enough to pay historians to study its history. One thing historians tried to find out is so called derivation plan -- i.e. how the truck types were derived. They defined the distance of truck types as the number of positions with different letters in truck type codes. They also assumed that each truck type was derived from exactly one other truck type (except for the first truck type which was not derived from any other type). The quality of a derivation plan was then defined as   1/Σ(to,td)d(to,td) where the sum goes over all pairs of types in the derivation plan such that t o  is the original type and t d  the type derived from it and d(t o,t d) is the distance of the types.   Since historians failed, you are to write a program to help them. Given the codes of truck types, your program should find the highest possible quality of a derivation plan.  
Input
The input consists of several test cases. Each test case begins with a line containing the number of truck types, N, 2 <= N <= 2 000. Each of the following N lines of input contains one truck type code (a string of seven lowercase letters). You may assume that the codes uniquely describe the trucks, i.e., no two of these N lines are the same. The input is terminated with zero at the place of number of truck types.
Output
For each test case, your program should output the text "The highest possible quality is 1/Q.", where 1/Q is the quality of the best derivation plan.
Sample Input
4
aaaaaaa
baaaaaa
abaaaaa
aabaaaa
0

Sample Output
The highest possible quality is 1/3.

 
題意:歴史上、各truckの型番を7つの小文字で表し、各型番の差はアルファベット列の異なるアルファベットの個数である.今n種類の異なる型番のtruckを与えて、どのように使うことを聞きます
1/Σ(to,td)d(to,td)の値が最小である.(つまり、すべてのtruckを接続する最短パスが見つかります.)
私が選んだのはprimアルゴリズムです.つまり、ポイントを追加するたびに、新しいエッジ権の和、コードを見てみましょう.
 
<?php
error_reporting( E_ALL&~E_NOTICE );
define("Inf",8);
class prim_class
{
 public $n;
 public $dist = array();
 public $p = array();
 public $map = array();
 public $str = array();
 public $value;
 function prim()
 {  
  for($t=1;$t<=$this->n;$t++)
  {
   $this->dist[$t] = 8;
  }
  
  for($i=1;$i < 50;$i++)
  {
   $this->p[$i] = false;
  }
  
  $s=1;$this->value=0;$k=0;
  
  while(1)
  {
   //echo $s."ini<br>";
   $this->p[$s] = true;
   $k++;
   if($k==$this->n)break;
   $min = Inf;
   $num = 0;
   for($j=2;$j<=$this->n;$j++)
   {
    //             (     ,               ),       。
    if($this->p[$j])continue;
    if($this->dist[$j] > $this->map[$s][$j])
     $this->dist[$j] = $this->map[$s][$j];
    if($this->dist[$j]<$min)
    {
     $num=$j;
                 $min=$this->dist[$j];
     
    }
   }
   $s=$num;
   $this->value+=$min;
   
  }
 }
 
 function init()
 {
  for($i=1;$i<=$this->n-1;$i++)
  {
   for($j=$i+1;$j<=$this->n;$j++)
   {
    $a=0;
    for($k=0;$k<7;$k++)
    {
     if(substr($this->str[$i],$k,1)!=substr($this->str[$j],$k,1))
     $a++;
    }
    $this->map[$i][$j]=$this->map[$j][$i]=$a;
   }
  }
 }
 
 function main()
 {
  $this->n = 4;
  $this->str[1] = "aaaaaaa";
  $this->str[2] = "baaaaaa";
  $this->str[3] = "abaaaaa";
  $this->str[4] = "aabaaaa";
  for($i=0;$i<=50;$i++)
  {
   for($j=0;$j<=50;$j++)
   {
    $this->map[$i][$j]=0;// . "|";
   }
  }
  $this->init();
  
  $this->prim();
  echo "The highest possible quality is 1/".$this->value;
 }
 
}
?>
<?php
$pc = new prim_class();
$pc->main();
?>