此题的思路就是以行和列上的同学对数为待排序的元素来对行和列进行排序(贪心思想) ">using namespace std; struct node{ int num; int cnt; }hang[1100],lie[1100]; bool cmp1(struct node a , struct node b ){ return a.num < b.num; } bool cmp2(struct node a , struct node b ){ return a.cnt > b.cnt; } int main(){ int m,n,k,l...