摘要:
//sort// 1025. PAT Ranking.cpp: 主项目文件。 #include "stdafx.h"
#include #include #include using namespace std; const int N=30003;
struct Info{ char id[14]; int score; int belongs,vRank; int rank; Info operator=(const Info &info){ strcpy(id,info.id); score=info.score; belongs=info.belongs.. 阅读全文