It is said that in 2013, there were about 100 graduate schools ready to proceed over 40,000 applications in Zhejiang Province. It would help a lot if you could write a program to automate the admission procedure.

Each applicant will have to provide two grades: the national entrance exam grade GE, and the interview grade GI. The final grade of an applicant is (GE + GI) / 2. The admission rules are:

  • The applicants are ranked according to their final grades, and will be admitted one by one from the top of the rank list.
  • If there is a tied final grade, the applicants will be ranked according to their national entrance exam grade GE. If still tied, their ranks must be the same.
  • Each applicant may have K choices and the admission will be done according to his/her choices: if according to the rank list, it is one's turn to be admitted; and if the quota of one's most preferred shcool is not exceeded, then one will be admitted to this school, or one's other choices will be considered one by one in order. If one gets rejected by all of preferred schools, then this unfortunate applicant will be rejected.
  • If there is a tied rank, and if the corresponding applicants are applying to the same school, then that school must admit all the applicants with the same rank, even if its quota will be exceeded.

Input Specification:

Each input file contains one test case. Each case starts with a line containing three positive integers: N (<=40,000), the total number of applicants; M (<=100), the total number of graduate schools; and K (<=5), the number of choices an applicant may have.

In the next line, separated by a space, there are M positive integers. The i-th integer is the quota of the i-th graduate school respectively.

Then N lines follow, each contains 2+K integers separated by a space. The first 2 integers are the applicant's GE and GI, respectively. The next K integers represent the preferred schools. For the sake of simplicity, we assume that the schools are numbered from 0 to M-1, and the applicants are numbered from 0 to N-1.

Output Specification:

For each test case you should output the admission results for all the graduate schools. The results of each school must occupy a line, which contains the applicants' numbers that school admits. The numbers must be in increasing order and be separated by a space. There must be no extra space at the end of each line. If no applicant is admitted by a school, you must output an empty line correspondingly.

Sample Input:

11 6 3
2 1 2 2 2 3
100 100 0 1 2
60 60 2 3 5
100 90 0 3 4
90 100 1 2 0
90 90 5 1 3
80 90 1 0 2
80 80 0 1 2
80 80 0 1 2
80 70 1 3 2
70 80 1 2 3
100 100 0 2 4

Sample Output:

0 10
3
5 6 7
2 8 1 4
 #include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
typedef struct{
int id;
int Ge;
int Gi;
int choice[];
int rank;
int school;
}info;
bool cmp(info a, info b){
int suma = a.Ge + a.Gi, sumb = b.Ge + b.Gi;
if(suma != sumb)
return suma > sumb;
else return a.Ge > b.Ge;
}
bool cmp2(info a, info b){
if(a.school != b.school)
return a.school < b.school;
else
return a.id < b.id;
}
info stu[];
int main(){
int N, M, K, quota[];
scanf("%d%d%d", &N, &M, &K);
for(int i = ; i < M; i++)
scanf("%d", &quota[i]);
for(int i = ; i < N; i++){
stu[i].id = i;
stu[i].school = -;
scanf("%d%d", &stu[i].Ge, &stu[i].Gi);
for(int j = ; j < K; j++)
scanf("%d", &stu[i].choice[j]);
}
sort(stu, stu + N, cmp);
stu[].rank = ;
stu[].school = stu[].choice[];
quota[stu[].school]--;
for(int i = ; i < N; i++){
if(stu[i].Ge + stu[i].Gi == stu[i - ].Ge + stu[i - ].Gi && stu[i].Ge == stu[i - ].Ge){
stu[i].rank = stu[i - ].rank;
}else{
stu[i].rank = i + ;
}
for(int j = ; j < K; j++){
if(quota[stu[i].choice[j]] > ){
stu[i].school = stu[i].choice[j];
quota[stu[i].choice[j]]--;
break;
}else if(quota[stu[i].choice[j]] <= && stu[i].choice[j] == stu[i - ].school && stu[i].rank == stu[i - ].rank){
stu[i].school = stu[i].choice[j];
quota[stu[i].choice[j]]--;
break;
}
}
}
sort(stu, stu + N, cmp2);
int index, cnt = ;
for(int i = ; i < N; i++){
index = i;
if(stu[i].school != -)
break;
}
while(cnt < stu[index].school){
printf("\n");
cnt++;
}
printf("%d", stu[index].id);
int temp = stu[index].school;
for(int i = index + ; i < N; i++){
if(stu[i].school == temp){
printf(" %d", stu[i].id);
}else{
temp = stu[i].school;
while(cnt < temp){
printf("\n");
cnt++;
}
printf("%d", stu[i].id);
}
}
while(cnt < M){
printf("\n");
cnt++;
}
cin >> N;
return ;
}

总结:

1、这道题模拟的是填报志愿录取的情况。基本思路是先按照学生的平均分(总分)进行排序,然后确定排名。然后从第一名开始陆续处理志愿学校,处理完第i名后才能处理第i+1名。要注意的是,当二人的名次相同但只有一个录取名额时,不需要考虑名额限制而要将二人同时录取。在解题中体现的就是:顺序查看第i人的K个志愿,当他的第j志愿学校名额充足时,正常录取;当第i人的第j个志愿学校已经没有名额时,如果该人的名次和他前面一人的名次相同,且他的第j个志愿和前一人的最终录取学校相同时,这个第i人可以被j志愿录取。

2、在处理完所有人的录取流程后,还无法直接输出。题目要求以学校为主进行输出。此时,如果设置M维数组记录M个学校分别录取的学生的id,还需要按id排序,将要遍历很多次stu数组,很可能超时。 这时可以再进行一次排序,按照学校序号的大小和学生的id综合排序,得到学校相同的学生在一起,且按照学生id从小到大排列。这时就可以输出了,有些学校没有人录取,只输出一个空行,需要在按照stu数组遍历时多加注意(需遍历到所有M个学校而非仅仅stu里的N个学生)。

3、由上可知,可以利用排序算法进行分类(当正常分类复杂度很高时)。

A1080. Graduate Admission的更多相关文章

  1. PAT甲级——A1080 Graduate Admission

    It is said that in 2011, there are about 100 graduate schools ready to proceed over 40,000 applicati ...

  2. PAT_A1080#Graduate Admission

    Source: PAT A1080 Graduate Admission (30 分) Description: It is said that in 2011, there are about 10 ...

  3. 题目1005:Graduate Admission

    题目1005:Graduate Admission 时间限制:1 秒 内存限制:32 兆 特殊判题:否 题目描述: It is said that in 2011, there are about 1 ...

  4. 题目1005:Graduate Admission(录取算法)

    题目链接:http://ac.jobdu.com/problem.php?pid=1005 详解链接:https://github.com/zpfbuaa/JobduInCPlusPlus 参考代码: ...

  5. PAT 1080 Graduate Admission[排序][难]

    1080 Graduate Admission(30 分) It is said that in 2011, there are about 100 graduate schools ready to ...

  6. pat1080. Graduate Admission (30)

    1080. Graduate Admission (30) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue It ...

  7. pat 甲级 1080. Graduate Admission (30)

    1080. Graduate Admission (30) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue It ...

  8. PAT 甲级 1080 Graduate Admission (30 分) (简单,结构体排序模拟)

    1080 Graduate Admission (30 分)   It is said that in 2011, there are about 100 graduate schools ready ...

  9. PAT-1080 Graduate Admission (结构体排序)

    1080. Graduate Admission It is said that in 2013, there were about 100 graduate schools ready to pro ...

随机推荐

  1. C. Sequence Transformation

    链接 [http://codeforces.com/contest/1059/problem/C] 题意 给你一个n,有个序列有n个元素分别时1 ~ n,每次去掉一个元素输出剩下元素的GCD,使得最后 ...

  2. 如何启动Intel VT-X及合理利用搜索

    昨天安装Vmware的时候不幸遇到了Vt-X被禁用的麻烦,上网百度了一下才知道要进入Bois进行设置.说起百度就不得不提到模糊搜索这个概念.这个特性的优点和缺点可谓同等突出,有了模糊搜索大家可以在信息 ...

  3. 我的github地址 https://github.com/1010de/Test.git

    构建之法老师叫交下任务学习github,经过一段时间的学习和了解,看介绍.看视频.看博客.初步认识到github的方便与好处.     自己试着去注册和使用github,已经慢慢学会了一些基本操作. ...

  4. Leetcode——171.Excel表列序号【水题】

    @author: ZZQ @software: PyCharm @file: leetcode171_Excel表列序号.py @time: 2018/11/22 15:29 要求: 给定一个Exce ...

  5. mysql数据库忘记密码时如何修改

    工具/原料 mysql数据库 cmd命令行 打开mysql.exe和mysqld.exe所在的文件夹,复制路径地址 打开cmd命令提示符,进入上一步mysql.exe所在的文件夹

  6. IP工具类

    import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.servlet.http.HttpServletReques ...

  7. “using NoSQL” under MySQL

    https://dev.mysql.com/doc/refman/5.7/en/document-store.html https://dev.mysql.com/doc/refman/5.7/en/ ...

  8. IE下JS保存图片

    function ieSave()                   {                       var img = document.images[0];            ...

  9. 表格属性和BFC(block framing content)

    th和tr都是表示列但是 th有一个居中加粗的效果. 表单是由 : 1表单域:<form name=" " method="get/post"  acti ...

  10. 一个简单的Oracle和 SQLSERVER 重建所有表索引的办法

    1. SQLSERVER 使用微软自带的存储过程 exec sp_msforeachtable 'DBCC DBREINDEX(''?'')' 2. Oracle的办法: select 'alter ...