737 B
737 B
| 1 | maze | strategy | time_ms | visited_cells | path_length | success_rate |
|---|---|---|---|---|---|---|
| 2 | Small (10x10) | BFS | 0.10525998659431934 | 30.0 | 14.0 | 1.0 |
| 3 | Small (10x10) | DFS | 0.10874001309275627 | 32.0 | 14.0 | 1.0 |
| 4 | Small (10x10) | A* | 0.1484400127083063 | 23.0 | 14.0 | 1.0 |
| 5 | Medium (50x50) | BFS | 0.6413599941879511 | 182.0 | 92.0 | 1.0 |
| 6 | Medium (50x50) | DFS | 0.3506400156766176 | 93.0 | 92.0 | 1.0 |
| 7 | Medium (50x50) | A* | 1.0985400062054396 | 182.0 | 92.0 | 1.0 |
| 8 | Large (100x100) | BFS | 0.7311799563467503 | 201.0 | 149.0 | 1.0 |
| 9 | Large (100x100) | DFS | 0.551999919116497 | 151.0 | 149.0 | 1.0 |
| 10 | Large (100x100) | A* | 1.2306599877774715 | 200.0 | 149.0 | 1.0 |
| 11 | Empty | BFS | 7.031580060720444 | 1834.0 | 86.0 | 1.0 |
| 12 | Empty | DFS | 4.2091799434274435 | 1797.0 | 922.0 | 1.0 |
| 13 | Empty | A* | 13.363939989358187 | 1834.0 | 86.0 | 1.0 |
| 14 | No exit | BFS | -1 | -1 | -1 | 0 |
| 15 | No exit | DFS | -1 | -1 | -1 | 0 |
| 16 | No exit | A* | -1 | -1 | -1 | 0 |