<?php SUBWAY => 'едешь на метро', FOOT => 'идешь пешком', BUS => 'едешь на автобусе' ); 'pet' => 'ст. м. Петроградская', 'chk' => 'ст. м. Чкаловская', 'gor' => 'ст. м. Горьковская', 'spo' => 'ст. м. Спортивная', 'vas' => 'ст. м. Василеостровская', 'kre' => 'Петропавловская крепость', 'let' => 'Летний сад', 'dvo' => 'Дворцовая площадь', 'isa' => 'Исакиевский собор', 'nov' => 'Новая Голландия', 'ras' => 'Дом Раскольникова', 'gos' => 'Гостиный Двор', 'sen' => 'Сенная Площадь', 'vla' => 'ст. м. Владимирская', 'vit' => 'Витебский вокзал', 'teh' => 'Технологический Институт' ); 'chk' => canGet(10, BUS), 'gor' => canGet(3, SUBWAY) ), 'pet' => canGet(10, BUS), 'spo' => canGet(3, SUBWAY) ), 'pet' => canGet(3, BUS), 'kre' => canGet(5, FOOT), 'gos' => canGet(6, SUBWAY) ), 'chk' => canGet(3, SUBWAY), 'vas' => canGet(10, BUS), 'sen' => canGet(7, SUBWAY) ), 'spo' => canGet(10, BUS), 'gos' => canGet(7, SUBWAY), 'nov' => canGet(11, FOOT) ), 'gor' => canGet(5, FOOT) ), 'dvo' => canGet(6, FOOT), 'gos' => canGet(7, FOOT) ), 'isa' => canGet(6, FOOT), 'gos' => canGet(6, FOOT), 'let' => canGet(6, FOOT) ), 'dvo' => canGet(6, FOOT), 'nov' => canGet(5, FOOT) ), 'vas' => canGet(11, FOOT), 'isa' => canGet(5, FOOT), 'ras' => canGet(7, BUS) ), 'nov' => canGet(7, BUS), 'sen' => canGet(3, FOOT) ), 'vas' => canGet(7, SUBWAY), 'sen' => canGet(3, SUBWAY), 'dvo' => canGet(6, FOOT), 'gor' => canGet(6, SUBWAY), 'let' => canGet(7, FOOT), 'vla' => canGet(7, FOOT) ), 'ras' => canGet(3, FOOT), 'spo' => canGet(7, SUBWAY), 'gos' => canGet(3, SUBWAY), 'vla' => canGet(4, SUBWAY), 'vit' => canGet(2, SUBWAY), 'teh' => canGet(3, SUBWAY) ), 'sen' => canGet(4, SUBWAY), 'gos' => canGet(7, FOOT), 'vit' => canGet(3, SUBWAY) ), 'sen' => canGet(2, SUBWAY), 'teh' => canGet(2, SUBWAY), 'vla' => canGet(3, SUBWAY) ), 'sen' => canGet(3, SUBWAY), 'vit' => canGet(2, SUBWAY) ) ); function canGet($time, $byWhat) { } $i = 0; function makeOneStep($paths, $traversedPath, $time, $start, $finish, $i, $allTraversedPaths) { $traversedPath[$i] = $start; if ($start == $finish) { echo "путь пройден за $time\nПройденные пункты:\n"; foreach ($traversedPath as $points) { echo "$points - "; } $allTraversedPaths[$i] = $traversedPath; //var_dump($traversedPath); //var_dump($allTraversedPaths); 'traversedPath' => $traversedPath, 'allTraversedPaths' => $allTraversedPaths); return $traversedPath; } $i++; /* Раскладываем массив $paths и получаем $period - время перемещения от пункта к пункту, $time - общее затраченное время, $byWhat - на чём именно мы перемещаемся от пункта к пункту. */ foreach($paths[$start] as $points => $value) { $period = $paths[$start][$points]['time']; $byWhat = $paths[$start][$points]['by']; //var_dump($byWhat); $time += $period; $start = $points; makeOneStep($paths, $traversedPath, $time, $start, $finish, $i, $allTraversedPaths); } } } makeOneStep($paths, $traversedPath, 0, 'vit', 'teh', $i, $allTraversedPaths); //var_dump($traversedPath); //echo $allTraversedPath;
Standard input is empty
путь пройден за 12 Пройденные пункты: vit - sen - teh - путь пройден за 5 Пройденные пункты: vit - teh - путь пройден за 12 Пройденные пункты: vit - vla - sen - teh - путь пройден за 35 Пройденные пункты: vit - vla - gos - vas - spo - sen - teh - путь пройден за 44 Пройденные пункты: vit - vla - gos - vas - nov - ras - sen - teh - путь пройден за 22 Пройденные пункты: vit - vla - gos - sen - teh - путь пройден за 57 Пройденные пункты: vit - vla - gos - dvo - isa - nov - vas - spo - sen - teh - путь пройден за 51 Пройденные пункты: vit - vla - gos - dvo - isa - nov - ras - sen - teh - путь пройден за 67 Пройденные пункты: vit - vla - gos - gor - pet - chk - spo - vas - nov - ras - sen - teh - путь пройден за 48 Пройденные пункты: vit - vla - gos - gor - pet - chk - spo - sen - teh - путь пройден за 63 Пройденные пункты: vit - vla - gos - let - dvo - isa - nov - vas - spo - sen - teh - путь пройден за 57 Пройденные пункты: vit - vla - gos - let - dvo - isa - nov - ras - sen - teh - NULL
PHP Notice: Undefined variable: allTraversedPaths in /home/GQw6Lc/prog.php on line 170 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: isa in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: isa in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: spo in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: spo in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: dvo in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: dvo in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vas in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vas in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: nov in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: nov in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: nov in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: nov in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: dvo in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: dvo in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: nov in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: nov in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: dvo in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: dvo in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vla in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: isa in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: isa in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: spo in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: spo in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: dvo in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: dvo in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vas in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vas in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: nov in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: nov in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gos in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: nov in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: nov in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: dvo in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: dvo in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: sen in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: sen in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: nov in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: nov in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: sen in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: sen in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: isa in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: isa in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: spo in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: spo in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vas in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vas in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: dvo in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: dvo in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: sen in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: sen in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vas in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vas in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: gor in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: sen in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: sen in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: isa in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: isa in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: kre in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: let in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: sen in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: sen in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: ras in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: vas in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: vas in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 158 PHP Notice: Undefined index: teh in /home/GQw6Lc/prog.php on line 159 PHP Notice: Undefined index: allTraversedPaths in /home/GQw6Lc/prog.php on line 174