洛谷P1093 奖学金【排序】

题目描述 https://www.luogu.org/problemnew/show/P1093
多个因素排序

#include
#include
#include
#include
using namespace std;
struct node
{
	int sc,ch,nm;
}a[305];
int n;
bool cmp(const node &a,const node &b)
{
	if(a.sc!=b.sc) return a.sc>b.sc;
	if(a.ch!=b.ch) return a.ch>b.ch;
	return a.nm

你可能感兴趣的:(洛谷P1093 奖学金【排序】)