#include <iostream> #include <unordered_map> #include <utility> #include <vector> #include <string> #include <regex> using namespace std; std::vector<std::string> split(const std::string& str, const std::string& del) { std::regex re(del); s...