#include<iostream>
#include<algorithm>
#include<string>
#include<vector>
using namespace std;
struct PNode
{
string kh;
int grade;
int zzpm;
int kdpm;
int kdcode;
};
bool comb(PNode a, PNode b)
{
if (a.grade != b.grade)
return a.grade > b.grade;
else
return a.kh < b.kh;
}
int main()
11-18
307

09-17
374

07-29
1013

07-12
206
