A - 咪咪游戏 Solution 直接构造一个字符串使得长度和相同且由连续的mq组成。 如果构造不出长度相同的或者和长得不一样的输出No,否则输出Yes即可。 时间复杂度 Code #include<bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false), cin.tie(0), cout.tie(0); int q; cin >> q; while(q--) { string s; cin >> s; string t; ...