|
|
|
|
|
by steventhedev
2559 days ago
|
|
Isn't this overkill to verify that you don't have any invalid states? Consider the state machine as a directed graph, reverse each edge and run DFS from the end state. if you have any vertices in the graph you didn't visit, they're dead ends. That should be more efficient than the O(n^3) way of finding eigenvectors. |
|
As far as complexity goes, this should be linear in number of vertices. In fact, you don't even really have to construct the graph, just count out degree.