ZCMU-1339-考试排名

来源:互联网 发布:淘宝店铺自定义配色 编辑:程序博客网 时间:2024/06/04 18:40

1339: 考试排名

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 93  Solved: 26
[Submit][Status][Web Board]

Description

C++编程考试使用的实时提交系统,具有即时获得成绩排名的特点。它的功能是怎么实现的呢? 
我们做好了题目的解答,提交之后,要么“AC”,要么错误,不管怎样错法,总是给你记上一笔,表明你曾经有过一次错误提交,因而当你一旦提交该题 “AC”后,就要与你算一算帐了,总共该题错误提交了几回。虽然你在题数上,大步地跃上了一个台阶,但是在耗时上要摊上你共花去的时间。特别是,曾经有过 的错误提交,每次都要摊上一定的单位时间分。这样一来,你在做出的题数上,可能领先别人很多,但是,在做出同样题数的人群中,你可能会在耗时上处于排名的 劣势。 
例如:某次考试一共8题(A,B,C,D,E,F,G,H),每个人做的题都在对应的题号下有个数量标记,负数表示该学生在该题上有过的错误提交 次数,但到现在还没有AC,正数表示AC所耗的时间,如果正数a跟上一对括号,里面有个整数b,那就表示该学生提交该题AC了,耗去了时间a,同时,曾经 错误提交了b次,因此对于下述输入数据: 
name A B C D E F G H 
Smith -1 -16 8 0 0 120 39 0 
John 116 -2 11 0 0 82 55(1) 0 
Jose 72(3) 126 10 -3 0 47 21(2) -2 
Bush 0 -1 -8 0 0 0 0 0 
Alice -2 67(2) 13 -1 0 133 79(1) -1 
Bob 0 0 57(5) 0 0 168 -7 0 
若每次错误提交的罚分为20分,则其排名从高到低应该是这样的: 
Jose 5 376 
John 4 284 
Alice 4 352 
Smith 3 167 
Bob 2 325 
Bush 0 0

Input

输入数据的第一行是考试题数n(1≤n≤12)以及单位罚分数 m(10≤m≤20),p名学生数,每行数据描述一个学生的用户名(不多于10个字符的字串)以及对所有n道题的答题现状,其描述采用问题描述中的数量标记的格式,见 上面的表格,提交次数总是小于100,AC所耗时间总是小于1000。

Output

将这些学生的考试现状,输出一个实时排名。实时排名显然先按AC题数的多 少排,多的在前,再按时间分的多少排,少的在前,如果凑巧前两者都相等,则按名字的字典序排,小的在前。每个学生占一行,输出名字(10个字符宽),做出 的题数(2个字符宽,右对齐)和时间分(4个字符宽,右对齐)。名字、题数和时间分相互之间有一个空格。

Sample Input

8 20 6
Smith -1 -16 8 0 0 120 39 0
John 116 -2 11 0 0 82 55(1) 0
Josephus 72(3) 126 10 -3 0 47 21(2) -2
Bush 0 -1 -8 0 0 0 0 0
Alice -2 67(2) 13 -1 0 133 79(1) -1
Bob 0 0 57(5) 0 0 168 -7 0

Sample Output

Josephus 5 376
John 4 284
Alice 4 352
Smith 3 167
Bob 2 325
Bush 0 0


【解析】
此题一开始模拟出来总是WA,几个小时后发现居然是我,AC题目了提交错误的次数乘20了...应该是乘m..还有就是
这个地方输出是需要注意的。我们可以用C++来输出加一个iomanip的头文件。然后用setw如果向左对齐就是left否
则就是right在此贴上两个代码...一个可以用find函数来做,另外一个就是用getchar了。
#include<iostream>#include<string>#include<vector>#include<cstdio>#include<iomanip>#include<algorithm>#include<cstdlib>using namespace std;struct student{    string name;    int num;    int sum;    int correct;}st[10000];bool cmp(student a,student b){    if(a.correct!=b.correct)        return a.correct>b.correct;   else if(a.correct==b.correct&&a.sum!=b.sum)        return a.sum<b.sum;    else        return a.name<b.name;}int main(){    int n,m,p,i,j,k,r;    int q=0;    string s1,s2;    while(~scanf("%d%d%d",&n,&m,&p))    {    for(i=0;i<p;i++)    {        cin>>st[i].name;        for(j=0;j<n;j++)        {            cin>>s1;            q=0;            if(s1[0]!='-'&&s1[0]!='0')            {                r=s1.find("(");                st[i].correct+=1;                if(r==-1)                {                    for(k=0;k<s1.size();k++)                    {                        q=q*10+s1[k]-'0';                    }                    st[i].sum=st[i].sum+q;                }                else if(r>0)                {                    q=0;                     for(k=0;k<r;k++)                    {                        q=q*10+s1[k]-'0';                    }                    st[i].sum+=q;                    q=0;                    for(k=r+1;s1[k]!=')';k++)                    {                        q=q*10+s1[k]-'0';                    }                    st[i].num+=q;                }            }        }        st[i].sum+=st[i].num*m;    }    sort(st,st+p,cmp);     for(i=0;i<p;i++)    {         cout<<left<<setw(10)<<st[i].name<<' ';         cout<<right<<setw(2)<<st[i].correct<<' ';         cout<<right<<setw(4)<<st[i].sum<<endl;    }    }    return 0;}
find...
#include<iostream>#include<string>#include<vector>#include<cstdio>#include<algorithm>#include<cstdlib>#include<cstring>#include<iomanip>using namespace std;struct student{    string name;    int num;    int sum;    int correct;};bool cmp(student a,student b){if(a.correct==b.correct)    {        if(a.sum==b.sum)            return a.name<b.name;        else        return a.sum<b.sum;    }    return a.correct>b.correct;}int main(){    int n,m,p,i,j,k,r;    student st[10000];    int q=0;    scanf("%d%d%d",&n,&m,&p);    for(i=0;i<p;i++)    {        cin>>st[i].name;        for(j=0;j<n;j++)        {            cin>>q;            if(q<=0)                continue;            else            {                st[i].correct++;                st[i].sum+=q;            }            if(getchar()=='(')            {                cin>>q;                st[i].num+=q;                getchar();            }        }        st[i].sum+=st[i].num*m;    }    sort(st,st+p,cmp);   for(i=0;i<p;i++)    {         cout<<left<<setw(10)<<st[i].name<<' ';         cout<<right<<setw(2)<<st[i].correct<<' ';         cout<<right<<setw(4)<<st[i].sum<<endl;    }    return 0;}

0 0