#include<bits/stdc++.h> using namespace std; // 只需对需求的前两种比较 bool compare(pair<int, char> a, pair<int,char> b){ // 排序代码参考了评论区大佬,主要是pair的思想学到了 if(tolower(a.second) == tolower(b.second)) return a.first<...