1926 Problem C: EXCEL排序

#include<cstdio> #include<cstring> #include<algorithm> using namespace std; struct Student { int id; char name[10]; int score; } stu[100100]; bool cmp1(Student a,Student b) { return a.id < b.id;
相關文章
相關標籤/搜索