#include<bits/stdc++.h> using namespace std; struct node { int chinese, math, english, sum; node(int a, int b, int c) { chinese = a; math = b; english = c; sum = a + b + c; } }; bool operator<(node a, node b) { // TODO: 实现比较逻辑,按照总分、语文、数学、英语的优先级排序 if (a.sum != b.sum)return a.sum < b.sum; ...