时间限制:1 秒

内存限制:32 兆

特殊判题:否

提交:5646

解决:1632

题目描述:

It is said that in 2011, there are 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.

输入:

Each input file may contain more than 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.

输出:

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.

样例输入:
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
样例输出:
0 10
3
5 6 7
2 8 1 4
来源:
2011年浙江大学计算机及软件工程研究生机试真题

思路:

本题考查的是排序,其中有很多坑的地方,我在做的过程中出了很多错误,看论坛参考别人意见才一一发现解决。

其中最可能坑的地方是:先给考生排名后,根据考生排名从名次高到名次低逐个录取,考生第一志愿没录取直接看第二志愿,跟我们高考不一样的。

另外还需要注意的:当学校没有已经没有名额时,若你与所报的学校已经录取的最低分相等且为同等志愿,你就会破格被录取。。。(也就是为什么样例中的学生7会被学校2录取)

数据结构用结构体比较好,用分开的数组就太乱了。C语言用qsort排序,C++用sort。

代码:

#include <stdio.h>
#include <stdlib.h> #define N 40000
#define M 100
#define K 5 typedef struct student {
int id;
int ge;
int gi;
int sch[K];
} Stu; typedef struct school {
int quota;
int num;
int ge;
int gi;
int stuid[N];
} Sch; int n, m, k;
Stu stu[N];
Sch sch[M]; int cmpGrade(const void *a, const void *b)
{
Stu *x = (Stu *)a;
Stu *y = (Stu *)b;
if (x->ge + x->gi != y->ge + y->gi)
return (y->ge + y->gi) - (x->ge + x->gi);
else
return y->ge - x->ge;
} int cmpId(const void *a, const void *b)
{
return *(int *)a - *(int *)b;
} void printSch(int i)
{
int j;
int num = sch[i].num;
for (j=0; j<num-1; j++)
printf("%d ", sch[i].stuid[j]);
if (num > 0)
printf("%d\n", sch[i].stuid[j]);
else
printf("\n");
} int main(void)
{
int i, j; while (scanf("%d%d%d", &n, &m, &k) != EOF)
{
for (i=0; i<m; i++)
{
scanf("%d", &sch[i].quota);
sch[i].num = 0;
}
for (i=0; i<n; i++)
{
scanf("%d%d", &stu[i].ge, &stu[i].gi);
stu[i].id = i;
for (j=0; j<k; j++)
{
scanf("%d", &(stu[i].sch[j]));
}
}
qsort(stu, n, sizeof(stu[0]), cmpGrade); for (i=0; i<n; i++)
{
for (j=0; j<k; j++)
{
int schid = stu[i].sch[j];
int num = sch[schid].num;
if ( (num < sch[schid].quota) || ( (num >= sch[schid].quota)
&& (stu[i].ge == sch[schid].ge)
&& (stu[i].gi == sch[schid].gi) ) )
{
sch[schid].stuid[num] = stu[i].id;
sch[schid].ge = stu[i].ge;
sch[schid].gi = stu[i].gi;
sch[schid].num ++;
//printf("schid=%d, num=%d\n", schid, num);
break;
}
}
} for (i=0; i<m; i++)
{
qsort(sch[i].stuid, sch[i].num, sizeof(int), cmpId);
printSch(i);
}
} return 0;
}
/**************************************************************
Problem: 1005
User: liangrx06
Language: C
Result: Accepted
Time:0 ms
Memory:17792 kb
****************************************************************/

九度OJ 1005:Graduate Admission (排序)的更多相关文章

  1. 九度oj 1005

    题目1005:Graduate Admission 时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:6182 解决:1791 题目描述:                        It ...

  2. 九度OJ 1349 数字在排序数组中出现的次数 -- 二分查找

    题目地址:http://ac.jobdu.com/problem.php?pid=1349 题目描述: 统计一个数字在排序数组中出现的次数. 输入: 每个测试案例包括两行: 第一行有1个整数n,表示数 ...

  3. 九度OJ 1196:成绩排序 (排序)

    时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:4339 解决:1476 题目描述: 用一维数组存储学号和成绩,然后,按成绩排序输出. 输入: 输入第一行包括一个整数N(1<=N< ...

  4. 九度OJ 1185:特殊排序 (排序)

    时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:15588 解决:3592 题目描述: 输入一系列整数,将其中最大的数挑出,并将剩下的数进行排序. 输入: 输入第一行包括1个整数N,1< ...

  5. 九度OJ 1066:字符串排序 (排序)

    时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:5632 解决:2299 题目描述: 输入一个长度不超过20的字符串,对所输入的字符串,按照ASCII码的大小从小到大进行排序,请输出排序后的 ...

  6. 九度OJ 1061:成绩排序 (排序)

    时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:17158 解决:4798 题目描述: 有N个学生的数据,将学生数据按成绩高低排序,如果成绩相同则按姓名字符的字母序排序,如果姓名的字母序也相 ...

  7. 九度OJ 1023:EXCEL排序 (排序)

    时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:14605 解决:3307 题目描述:     Excel可以对一组纪录按任意指定列排序.现请你编写程序实现类似功能.     对每个测试用例 ...

  8. 九度OJ 1135:字符串排序 (排序)

    时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:1559 解决:807 题目描述: 先输入你要输入的字符串的个数.然后换行输入该组字符串.每个字符串以回车结束,每个字符串少于一百个字符. 如 ...

  9. 九度OJ 1130:日志排序 (排序)

    时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:1265 解决:303 题目描述: 有一个网络日志,记录了网络中计算任务的执行情况,每个计算任务对应一条如下形式的日志记录: "hs ...

随机推荐

  1. (5)python tkinter-单选、多选

    单选按钮 tkinter.Radiobutton(root,text='a').pack() tkinter.Radiobutton(root,text='b').pack() tkinter.Rad ...

  2. HDU 6251 Inkopolis(2017 CCPC-Final,I题,环套树 + 结论)

    题目链接 HDU 6251 题意 给出一个$N$个点$N$条边的无向图.然后给出$M$个操作,每个操作为$(x, y, z)$,表示把连接 $x$和$y$的边的颜色改成$z$. 求这张无向图中所有边的 ...

  3. Algorithm | Vector

    因为平常用的话只是vector的一些非常简单的功能,基本上把它当数组来用,现在也只是把这一部分写了一些. template<class T> class XVector { public: ...

  4. 泽熙学到的 z

    叶展,原泽熙投资总经理助理,现任齐鲁证券资产管理公司总裁助理,齐鲁星空.星汉等集合理财投资经理. 导读:三年前,我加入了泽熙投资,正式成为一名职业投资者.做职业投资者一直是我的理想.在股市中用眼光和头 ...

  5. [置顶] zabbix发送告警

    之前使用邮件和短信发送zabbix告警信息,但告警信息无法实时查看或者无法发送,故障无法及时通知运维人员. 后来使用第三方微信接口发送信息,愉快地用了一年多,突然收费了. zabbix告警一直是我的痛 ...

  6. json字符串调整

    碰到比较长的json字符串,不知道哪里出错时,可以找一个正确的json字符串,慢慢把它调整到需要的形式,而不是去分析,字符串太长,一直看,效率太慢,容易看花眼.

  7. 【重点突破】——Drag&Drop拖动与释放

    一.引言 在学习HTML5新特性的时候,学到了Drag&Drop这两种拖放API,这里根据拖动的是“源对象”还是“目标对象”做两个小练习,主要是为了理解与应用HTML5为拖放行为提供的7个事件 ...

  8. 2016.10.17 yaml文件里的labels和Pod、RC、Service的对应关系

    在看kubernetes的例子时,出现了一个疑问. Pod.RC.Service的yaml文件里,都出现了labels,还有labelSelector.有些不太清楚,因此就这点来学习下.   接上文: ...

  9. win下配置java环境变量

    系统变量→新建 JAVA_HOME 变量 . 变量值填写jdk的安装目录(本人是 E:\Java\jdk1.7.0)  系统变量→寻找 Path 变量→编辑 在变量值最后输入 %JAVA_HOME%\ ...

  10. 3DES

    3DES是继DESeasy被破解后的DES加密升级版,它属于对称加密. 可指定24位长度的密钥.在java API中也有事实上现,代码例如以下: /** * 3DES 的Java SDK API 实现 ...