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. 使用IdentityServer4实现一个简单的Oauth2客户端模式授权

    1.首先新建一个webAPI项目做为IdentityServer的服务端,提供生成Token的服务,首先修改Startup.cs文件,如下图: 2.增加一个Config.cs文件,以便于提供资源和认证 ...

  2. HTTP Error 500.22 - Internal Server Error 错误解决方案

    1. 首先进入IIS ,配置IIS 应用程序池的.Net Framework版本 2. 点击左侧应用程序池,再单机右侧设置,选择版本 3. 设置为经典模式 如若遇到以下错误: 解决方案:删除confi ...

  3. Authorize的Forms认证

    页面请求步骤: 1.登录地址: http://localhost:4441/SysLogin/AdminLogin 2.登陆成功地址:http://localhost:4441/Frame/MainF ...

  4. linux-shell-引用-命令替换-命令退出状态-逻辑操作符

    命令替换:bash7步扩展的之一 嵌套  这里没什么意义 退出状态可以参与逻辑判断 表达式 算数表达式和条件表达式,逻辑表达式 查看passwd命令比,避免用户捕获输入密码的接口 这种方式就可以直接输 ...

  5. M2贡献分分配方案

    1.初始分每个人都为0. 2.每周分配任务,按任务计分. 3.每周每个人有12.5分. 4.次周完成本周任务计6分. 5.未全部完成本周任务计6分. 6.12月29日统计分数,多出来的分数按完成任务数 ...

  6. 12.17 Daily Scrum

      Today's Task Tomorrow's Task 丁辛 实现和菜谱相关的餐厅列表. 实现和菜谱相关的餐厅列表.             邓亚梅             美化搜索框UI. 美 ...

  7. hadoop伪分布式安装之Linux环境准备

    Hadoop伪分布式安装之Linux环境准备 一.软件版本 VMare Workstation Pro 14 CentOS 7 32/64位 二.实现Linux服务器联网功能 网络适配器双击选择VMn ...

  8. 2017BUAA软工个人作业Week1

    大概的功能已经满足 暂时只能用debug中的exe文件 正在改进... https://github.com/qwellk/project1/tree/product1 PSP2.1 Personal ...

  9. JavaScript两数相加(踩坑)记录

    Adding two numbers concatenates them instead of calculating the sum JavaScript里两个变量 var a = 2: var b ...

  10. linux 清空history以及记录原理

    1.当前session执行的命令,放置缓存中,执行exit时,把缓存信息写入~/.bash_history 2.当session直接被kill时,缓存中的历史命令不会写入~/.bash_history ...