pat-1080. Graduate Admission (30)

来源:互联网 发布:c语言考试编程题题库 编辑:程序博客网 时间:2024/05/08 08:31

1080. Graduate Admission (30)

时间限制
200 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

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 32 1 2 2 2 3100 100 0 1 260 60 2 3 5100 90 0 3 490 100 1 2 090 90 5 1 380 90 1 0 280 80 0 1 280 80 0 1 280 70 1 3 270 80 1 2 3100 100 0 2 4
Sample Output:
0 1035 6 72 81 4

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;






class node2{
public:int ge,gi;
  vector<int> v;
  int temp;
  int num;
 
};


node2 *arr;


bool cmp(node2 a,node2 b){
if(a.ge+a.gi>b.ge+b.gi) return true;
if(a.ge+a.gi<b.ge+b.gi) return false;
else{
if(a.ge>b.ge) return true;
else return false;
}


}


int main(){


int n,m,k;
cin>>n>>m>>k;
arr=new node2[n];



int size[100];
vector<int> school[100];
int last[100];
for(int i=0;i<m;i++)
{
cin>>size[i];
last[i]=-1;
}
for(int i=0;i<n;i++)
{int t;
cin>>arr[i].ge>>arr[i].gi;
arr[i].temp=1;arr[i].num=i;
for(int j=0;j<k;j++)
{
cin>>t;
arr[i].v.push_back(t);

}


}
sort(arr,arr+n,cmp);
for(int i=0;i<n;i++)
{
int t;
for(int j=0;j<k;j++)
{
t=arr[i].v[j];
if(size[t]>0) {
arr[i].temp=0,last[t]=i,size[t]--;
school[t].push_back(arr[i].num);
break;
}
else{
int tt=last[t];
if(arr[tt].ge==arr[i].ge&&arr[tt].gi==arr[i].gi)
{arr[i].temp=0,last[t]=i,size[t]--;
school[t].push_back(arr[i].num);
break;
}
}
}
}
for(int i=0;i<m;i++)
{
sort(school[i].begin(),school[i].end(),less<int>());
for(int j=0;j<school[i].size();j++)
{if(j==0) cout<<school[i][j];
else cout<<" "<<school[i][j];
}
cout<<endl;
}
return 0;
}

0 0