#include <iostream> #include <map> #include <vector> using namespace std; const int waitTime = 2; const int keyTime = 1; int getTime(map<char, pair<int, int>>& keyMap, vector<char> charArray) { int sum = 0; int lastKey = -1; for (auto it = charArray.begi...