堆排序常规操作 #include<bits/stdc++.h> using namespace std; int n; vector<pair<string,int>> pos; bool cmp(pair<string,int>& a,pair<string,int>& b){ return a.second<b.second; } int main(){ cin>>n; while(n--){ string word; int p; ...