记录编号 |
447065 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2007]奖学金 |
最终得分 |
100 |
用户昵称 |
JustWB |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.004 s |
提交时间 |
2017-09-09 13:25:21 |
内存使用 |
0.32 MiB |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
struct student
{
int a,b,c,num,all;
student(){a=b=c=num=all=0;}
bool operator <(const student &A)const
{
if(all==A.all)
{
if(a==A.a)return num<A.num;
return a>A.a;
}
return all>A.all;
}
}s[305];
inline int get();
int n;
int main()
{
freopen("pj07-1.in","r",stdin);
freopen("pj07-1.out","w",stdout);
n=get();
for(int i=1;i<=n;i++)
{
int a=get(),b=get(),c=get();
s[i].a=a;s[i].b=b;s[i].c=c;
s[i].all=a+b+c;s[i].num=i;
}
sort(s+1,s+n+1);
for(int i=1;i<=5;i++)printf("%d %d\n",s[i].num,s[i].all);
return 0;
}
inline int get()
{
int t=0;char c=getchar(),j=1;
while(!isdigit(c))
{
if(c=='-')j=-1;
c=getchar();
}
while(isdigit(c))
{
t=(t<<3)+(t<<1)+c-'0';
c=getchar();
}
return j*t;
}