记录编号 |
548614 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2005]谁拿了最多奖学金 |
最终得分 |
100 |
用户昵称 |
魔笛 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.008 s |
提交时间 |
2020-01-27 22:56:25 |
内存使用 |
13.66 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
struct student{
string name;
int qimo;
int banji;
char ganbu;
char west;
int total;
int lunwen;
}str[101];
int main(){
freopen("scholar.in","r",stdin);
freopen("scholar.out","w",stdout);
int n;
cin>>n;
for(int i=1;i<=n;i++){
cin>>str[i].name>>str[i].qimo>>str[i].banji>>str[i].ganbu>>str[i].west>>str[i].lunwen;
str[i].total=0;
}
for(int i=1;i<=n;i++){
if(str[i].qimo>80&&str[i].lunwen!=0)
str[i].total+=8000;
if(str[i].qimo>85&&str[i].banji>80)
str[i].total+=4000;
if(str[i].qimo>90)
str[i].total+=2000;
if(str[i].west=='Y'&&str[i].qimo>85)
str[i].total+=1000;
if(str[i].banji>80&&str[i].ganbu=='Y')
str[i].total+=850;
}
int a[101],ans=0;
for(int i=1;i<=n;i++){
a[i]=str[i].total;
ans+=a[i];
}
for(int i=1;i<=n;i++){
for(int j=i;j<=n;j++){
if(a[i]>a[j])
swap(a[i],a[j]);
}
}
for(int i=1;i<=n;i++){
if(str[i].total==a[n]){
cout<<str[i].name<<endl<<str[i].total<<endl;
cout<<ans;
return 0;
}
}
return 0;
}