第一题 #include <iostream> #include <vector> #include <map> using namespace std; int row, col, movee, turn, click; // 行数 列数 移动 map<char, pair<int, int>> m_map; // 方便查找 int abs(int a, int b) { return a > b ? a - b : b - a; } // 给定初始位置,结束位置,计算耗时 返回耗时 引用记录位置 ...