第一题ac 同一花色判断是否相连,不同花色要判断数字是否重复 #include <iostream> #include <unordered_map> #include <string> #include <algorithm> using namespace std; int main() { int n; cin >> n; while (n--) { int a[10] = {0}; int flag = 1; unordered_map<char, vector<int>> ...