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. Linux系统下本地yum镜像源环境部署-完整记录

    之前介绍了Linux环境下本地yum源配置方法,不过这个是最简单最基础的配置,在yum安装的时候可能有些软件包不够齐全,下面说下完整yun镜像源系统环境部署记录(yum源更新脚本下载地址:https: ...

  2. FormData

    1. 概述FormData类型其实是在XMLHttpRequest 2级定义的,它是为序列化表以及创建与表单格式相同的数据(当然是用于XHR传输)提供便利. 2. 构造函数创建一个formData对象 ...

  3. Segment Occurrences(string find函数)

    Description You are given two strings s and t, both consisting only of lowercase Latin letters.The s ...

  4. 《Gogoing》Alpha版会议总结

    一.开会的过程 首先大家对自己的任务进行了汇报,然后大家就当前最需要解决的问题提出解决方案,最后相互鼓励,相互帮助,探讨下一步该怎么做. 二.讨论的问题 百度地图API代码和界面代码为什么对接不上? ...

  5. linux 下gcc 编译结构体问题

    最近在linux 学习c语言的编程,发现好多原来在vs 上的在linux 都编译不过去,今天就遇到了一个问题就是结构体的编译的问题, 结构体大概的定义是 struct Node{ int a; int ...

  6. GitHub18

    兴趣是最好的老师,HelloGitHub 就是帮你找到兴趣! 简介 分享 GitHub 上有趣.入门级的开源项目. 这是一个面向编程新手.热爱编程.对开源社区感兴趣 人群的月刊,月刊的内容包括:各种编 ...

  7. Android动画总结

    本文总结常用属性方法等,详细学习可使用如下郭霖大神文章: Android属性动画完全解析(上),初识属性动画的基本用法 Android属性动画完全解析(中),ValueAnimator和ObjectA ...

  8. shell脚本--权限分配

    因为shell脚本内部是很多命令的集合,这些命令也许会涉及到操作某一个文件,而且shell脚本的运行,也是需要当前用户对脚本具有运行的权限,否则,会因为权限不够而失败. 首先最重要的一点:修改权限,只 ...

  9. JavaScript模拟表单(带数组的复杂数据结构)提交

    function test(){    var typeArray = new Array();    typeArray.push("mm");    typeArray.pus ...

  10. zabbix 使用问题两个--中文乱码,以及监控ESXi下的虚拟机

    1. 中文乱码 最开始中文显现 长方形不显示文字.解决办法: c:\windows\fonts 下面复制 楷体的字体(字体随意看自己喜欢) 文件名一般为: simkai.ttf 2.将simkai.t ...