用的回溯法,通过实验发现,通过实践发现回溯真的不应该轻易用。 最后通过的版本如下,如果还有优化空间希望能指点一下,谢谢🙏 #include <iostream> #include <vector> #include <string> #include <unordered_map> #include <algorithm> using namespace std; string path; int res = 0; unordered_map<char, int> temp; vector<string>...