fork download
  1. <?php
  2. class Field
  3. {
  4. public $size;
  5. public $mapOfField;
  6. public $numberAnimals;
  7. public $animals;
  8. public $cats;
  9. public function Field($size)
  10. {
  11. $this->animals = array();
  12. $this->size = $size;
  13. $this->cats = array();
  14. $this->numberAnimals = 0;
  15. $string = array();
  16. $this->mapOfField = array();
  17. for ($a = 0; $a <= $size; $a++) {
  18. $string[$a] = null;
  19. }
  20. for ($i = 0; $i <= $size; $i++) {
  21. $this->mapOfField[$i] = $string;
  22. }
  23. }
  24. public function add($animal)
  25. {
  26. $this->animals[$this->numberAnimals] = $animal;
  27. $animal->number = $this->numberAnimals;
  28. $this->numberAnimals++;
  29. $this->mapOfField[$animal->x][$animal->y] = $animal;
  30. if ($animal->name == 'C') {
  31. $this->cats[] = $animal;
  32. }
  33. }
  34. public function remove($animal)
  35. {
  36. $this->animals[$animal->number] = null;
  37. $this->mapOfField[$animal->x][$animal->y] = null;
  38. }
  39. public function updateCoordinates($animal, $x, $y)
  40. {
  41. $this->mapOfField[$animal->x][$animal->y] = null;
  42. $this->mapOfField[$x][$y] = $animal;
  43. $this->animals[$animal->number]->x = $x;
  44. $this->animals[$animal->number]->y = $y;
  45. }
  46. public function canMoveTo($x, $y)
  47. {
  48. if ($x < 0 || $x > $this->size || $y < 0 || $y > $this->size) {
  49. return false;
  50. } elseif ($this->mapOfField[$x][$y] == null || $this->mapOfField[$x][$y]->name == 'M') {
  51. return true;
  52. }
  53. }
  54. }
  55.  
  56. class Animals
  57. {
  58. public $name;
  59. public $number;
  60. public $x;
  61. public $y;
  62. function __construct($name, $x, $y)
  63. {
  64. $this->name = $name;
  65. $this->x = $x;
  66. $this->y = $y;
  67. }
  68. }
  69.  
  70. class Cats extends Animals
  71. {
  72. public $hungry = 1;
  73. function __construct($name, $x, $y)
  74. {
  75. parent::__construct($name, $x, $y);
  76. }
  77. public function move($field)
  78. {
  79. $x = $this->x;
  80. $y = $this->y;
  81. if ($this->hungry != 0) {
  82. $min = $field->size;
  83. for ($i = 0; $i <= $field->numberAnimals; $i++) {
  84. if ($field->animals[$i]->name == 'M') {
  85. $b = sqrt(pow($field->animals[$i]->x - $x, 2) + pow($field->animals[$i]->y - $y, 2));
  86. if ($b < $min) {
  87. $min = $b;
  88. $aimAnimal = $field->animals[$i];
  89. $xm = $field->animals[$i]->x;
  90. $ym = $field->animals[$i]->y;
  91. }
  92. }
  93. }
  94.  
  95. if ($x < $xm) {
  96. $x++;
  97. } elseif ($x > $xm) {
  98. $x--;
  99. } else {
  100. if ($y == $ym) {
  101. $this->hungry = 0;
  102. $field->remove($aimAnimal);
  103. }
  104. }
  105. if ($y < $ym) {
  106. $y++;
  107. } elseif ($y > $ym) {
  108. $y--;
  109. } else {
  110. if ($x == $xm) {
  111. $this->hungry = 0;
  112. $field->remove($aimAnimal);
  113. }
  114. }
  115. $can = $field->canMoveTo($x, $y);
  116. if ($can) {
  117. $field->updateCoordinates($this, $x, $y);
  118. }
  119. }
  120. $this->hungry = 1;
  121. }
  122. }
  123.  
  124. class Mauses extends Animals
  125. {
  126. public $overview = 5;
  127. function __construct($name, $x, $y)
  128. {
  129. parent::__construct($name, $x, $y);
  130. }
  131. public function move($field)
  132. {
  133. $cats = $field->cats;
  134. $numberCats = count($cats);
  135. $vectorX = 0;
  136. $vectorY = 0;
  137. for ($i = 0; $i < $numberCats; $i++) {
  138. $xR = abs($this->x - $field->cats[$i]->x);
  139. $yR = abs($this->y - $field->cats[$i]->y);
  140. if ($xR <= $this->overview && $yR <= $this->overview) {
  141. $vectorX = $vectorX + ($field->cats[$i]->x - $this->x);
  142. $vectorY = $vectorY + ($field->cats[$i]->y - $this->y);
  143. }
  144. }
  145. $x = $this->x;
  146. $y = $this->y;
  147. if ($x < $vectorX * (-1)) {
  148. $x++;
  149. } elseif ($x > $vectorX * (-1)) {
  150. $x--;
  151. }
  152. if ($y < $vectorY * (-1)) {
  153. $y++;
  154. } elseif ($y > $vectorY * (-1)) {
  155. $y--;
  156. }
  157. $can = $field->canMoveTo($x, $y);
  158. if ($can) {
  159. $field->updateCoordinates($this, $x, $y);
  160. }
  161. }
  162. }
  163.  
  164. function printField($array)
  165. {
  166. foreach ($array as &$value) {
  167. foreach ($value as &$value) {
  168. if ($value == null) {
  169. echo '.';
  170. } else {
  171. echo "$value->name";
  172. }
  173. }
  174. echo "\n";
  175. }
  176. }
  177.  
  178. $field = new Field(7);
  179. $mause = new Mauses('M', 4, 4);
  180. $cat = new Cats('C', 6, 6);
  181. $cat1 = new Cats('C', 6, 2);
  182. $mause1 = new Mauses('M', 7, 3);
  183.  
  184. $field->add($cat);
  185. $field->add($mause);
  186. $field->add($cat1);
  187. $field->add($mause1);
  188.  
  189. printField($field->mapOfField);
  190. echo "\n";
  191. for ($i = 1; $i < 18; $i++) {
  192. $mause->move($field);
  193. $mause1->move($field);
  194. $cat->move($field);
  195. $cat1->move($field);
  196. printField($field->mapOfField);
  197. echo "\n";
  198. }
Success #stdin #stdout #stderr 0.02s 20520KB
stdin
Standard input is empty
stdout
........
........
........
........
....M...
........
..C...C.
...M....

........
........
........
...M....
........
........
........
...C.C..

........
........
..M.....
........
........
........
..C.C...
........

........
.M......
........
........
........
.C.C....
........
........

M.......
........
........
........
C.C.....
........
........
........

M.......
........
........
........
CC......
........
........
........

M.......
........
........
C.......
C.......
........
........
........

M.......
........
C.......
C.......
........
........
........
........

M.......
C.......
C.......
........
........
........
........
........

C.......
C.......
........
........
........
M.......
........
........

C.......
C.......
........
........
........
M.......
........
........
.

C.......
C.......
........
........
........
M.......
........
........
.

C.......
C.......
........
........
........
M.......
........
........
.

C.......
C.......
........
........
........
M.......
........
........
.

C.......
C.......
........
........
........
M.......
........
........
.

C.......
C.......
........
........
........
M.......
........
........
.

C.......
C.......
........
........
........
M.......
........
........
.

C.......
C.......
........
........
........
M.......
........
........
.

stderr
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Warning:  Creating default object from empty value in /home/z4Nu4B/prog.php on line 44
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 101
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 103
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 101
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 103
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 101
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 103
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 101
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 103
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 101
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 103
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 101
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 103
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 101
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 103
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 101
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 103
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined property: stdClass::$name in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined offset: 4 in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 85
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 96
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 98
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 106
PHP Notice:  Undefined variable: ym in /home/z4Nu4B/prog.php on line 108
PHP Notice:  Undefined variable: xm in /home/z4Nu4B/prog.php on line 111
PHP Notice:  Undefined variable: aimAnimal in /home/z4Nu4B/prog.php on line 113
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 37
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38
PHP Notice:  Trying to get property of non-object in /home/z4Nu4B/prog.php on line 38