min BagFix

This commit is contained in:
4eker 2026-05-25 13:46:44 +03:00
parent b1b22678a2
commit 18359cc7ad
3 changed files with 21 additions and 36 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 58 KiB

File diff suppressed because one or more lines are too long

View File

@ -1,16 +1,16 @@
maze,strategy,time_ms,visited_cells
small,BFS,0.051,8
small,BFS,0.031,8
small,DFS,0.027,8
small,A*,0.049,8
medium,BFS,0.039,10
small,A*,0.039,8
medium,BFS,0.033,10
medium,DFS,0.031,10
medium,A*,0.042,10
large,BFS,0.962,197
large,DFS,0.84,197
large,A*,1.042,197
medium,A*,0.044,10
large,BFS,0.641,197
large,DFS,0.574,197
large,A*,1.016,197
empty,BFS,0.01,2
empty,DFS,0.008,2
empty,A*,0.01,2
no_exit,BFS,0.007,1
no_exit,BFS,0.006,1
no_exit,DFS,0.005,1
no_exit,A*,0.006,1

1 maze strategy time_ms visited_cells
2 small BFS 0.051 0.031 8
3 small DFS 0.027 8
4 small A* 0.049 0.039 8
5 medium BFS 0.039 0.033 10
6 medium DFS 0.031 10
7 medium A* 0.042 0.044 10
8 large BFS 0.962 0.641 197
9 large DFS 0.84 0.574 197
10 large A* 1.042 1.016 197
11 empty BFS 0.01 2
12 empty DFS 0.008 2
13 empty A* 0.01 2
14 no_exit BFS 0.007 0.006 1
15 no_exit DFS 0.005 1
16 no_exit A* 0.006 1