輸入格式:
輸入第1行給出3個(gè)正整數(shù),分別為:N(<=105)搭伤,即考生總數(shù);L(>=60)怜俐,為錄取最低分?jǐn)?shù)線,即德分和才分均不低于L的考生才有資格被考慮錄忍选;H(<100)擅这,
為優(yōu)先錄取線——德分和才分均不低于此線的被定義為“才德全盡”,此類考生按德才總分從高到低排序仲翎;才分不到但德分到線的一類考生屬于“德勝才”,
也按總分排序溯香,但排在第一類考生之后;德才分均低于H浓恶,但是德分不低于才分的考生屬于“才德兼亡”但尚有“德勝才”者,按總分排序包晰,但排在第二類考生之后湿镀;
其他達(dá)到最低線L的考生也按總分排序,但排在第三類考生之后勉痴。
隨后N行,每行給出一位考生的信息蒸矛,包括:準(zhǔn)考證號(hào)、德分莉钙、才分,其中準(zhǔn)考證號(hào)為8位整數(shù)磁玉,德才分為區(qū)間[0, 100]內(nèi)的整數(shù)。數(shù)字間以空格分隔蚊伞。
輸出格式:
輸出第1行首先給出達(dá)到最低分?jǐn)?shù)線的考生人數(shù)M,隨后M行时迫,每行按照輸入格式輸出一位考生的信息,考生按輸入中說明的規(guī)則從高到低排序掠拳。
當(dāng)某類考生中有多人總分相同時(shí),按其德分降序排列溺欧;若德分也并列,則按準(zhǔn)考證號(hào)的升序輸出姐刁。
輸入樣例:
14 60 80
10000001 64 90
10000002 90 60
10000011 85 80
10000003 85 80
10000004 80 85
10000005 82 77
10000006 83 76
10000007 90 78
10000008 75 79
10000009 59 90
10000010 88 45
10000012 80 100
10000013 90 99
10000014 66 60
輸出樣例:
12
10000013 90 99
10000012 80 100
10000003 85 80
10000011 85 80
10000004 80 85
10000007 90 78
10000006 83 76
10000005 82 77
10000002 90 60
10000014 66 60
10000008 75 79
10000001 64 90
...
#include<iostream>
using namespace std;
#define N 105 //考生總數(shù)
class test
{
public:
int s;
int num;
int de;
int cai;
int choice(int l, int h);
int sum() //求考生總成績(jī)
{
s = de + cai;
return s;
}
void rank(int n, test c[]); //排序
};
int test::choice(int l, int h) //把考生分類
{
if (de < l || cai < l) //不錄取
return -1;
else if (de >= h&&cai >= h) //德才全盡
return 0;
else if (de >= h&&cai < h) //德勝才
return 1;
else if (de < h&&cai<h&&de >= cai) //才德兼亡
return 2;
else if (de>l&&cai>l)
return 3;
}
void test::rank(int n, test c[]) //把考生排名并輸出
{
int i, j;
test e;
for (i = 0; i < n - 1; i++)
{
for (j = 0; j < n - i - 1; j++)
{
if (c[j].s<c[j + 1].s)
{
e = c[j];
c[j] = c[j + 1];
c[j + 1] = e;
}
else if (c[j].s == c[j + 1].s)
{
if (c[j].de < c[j + 1].de)
{
e = c[j];
c[j] = c[j + 1];
c[j + 1] = e;
}
else if (c[j].de == c[j + 1].de)
{
if (c[j].num < c[j + 1].num)
{
}
else
{
e = c[j];
c[j] = c[j + 1];
c[j + 1] = e;
}
}
}
}
}
for (i = 0; i < n; i++)
cout << c[i].num << " "<<c[i].s<<" " << c[i].de << " " << c[i].cai << endl;
}
int main()
{
int n, l, h;
int i;
int m = 0, k = 0, f = 0, t = 0, q = 0;
int u = 0;
int w;
test c1[N], c2[N], c3[N], c4[N], c5[N];
cout << "考生總數(shù) 錄取最低分?jǐn)?shù)線 優(yōu)先錄取分?jǐn)?shù)線" << endl;
cin >> n >> l >> h;
test array[N];
for (i = 0; i < n; i++)
{
cin >> array[i].num >> array[i].de >> array[i].cai;
array[i].sum();
w = array[i].choice(l, h);
switch (w)
{
case -1: c1[m] = array[i]; m++; break;
case 0: c2[k] = array[i]; k++; break;
case 1: c3[f] = array[i]; f++; break;
case 2: c4[t] = array[i]; t++; break;
case 3: c5[q] = array[i]; q++; break;
default:
break;
}
}
u = k + f + t + q;
cout << endl << u << endl;
cout << "第一類考生:" << endl; c2[k].rank(k, c2);
cout << "第二類考生:" << endl; c3[f].rank(f, c3);
cout << "第三類考生:" << endl; c4[t].rank(t, c4);
cout << "第四類考生:" << endl; c5[q].rank(q, c5);
system("pause");
}
....