static const auto io_sync_off = []() { //lambda函数 // turn off sync,关闭输入输出流的缓存 std::ios::sync_with_stdio(false); // untie in/out streams,实现输入和输出流的解绑 std::cin.tie(nullptr); std::cout.tie(nullptr); return nullptr; } (); class Solution { public: void add(string& s, string& t, int i, int j, char&...