原题链接:http://codeforces.com/contest/991/problem/B
Getting an A
Translator’s note: in Russia’s most widespread grading system, there are four grades: 5, 4, 3, 2, the higher the better, roughly corresponding to A, B, C and F respectively in American grading system.
The term is coming to an end and students start thinking about their grades. Today, a professor told his students that the grades for his course would be given out automatically — he would calculate the simple average (arithmetic mean) of all grades given out for lab works this term and round to the nearest integer. The rounding would be done in favour of the student — 4.5 4.5 would be rounded up to 5 5 (as in example 3), but would be rounded down to 4 4 .
This does not bode well for Vasya who didn’t think those lab works would influence anything, so he may receive a grade worse than (maybe even the dreaded 2 2 ). However, the professor allowed him to redo some of his works of Vasya’s choosing to increase his average grade. Vasya wants to redo as as few lab works as possible in order to get for the course. Of course, Vasya will get 5 5 for the lab works he chooses to redo.
Help Vasya — calculate the minimum amount of lab works Vasya has to redo.
Input
The first line contains a single integer — the number of Vasya’s grades (1≤n≤100) ( 1 ≤ n ≤ 100 ) .
The second line contains n n integers from — Vasya’s grades for his lab works.
Output
Output a single integer — the minimum amount of lab works that Vasya has to redo. It can be shown that Vasya can always redo enough lab works to get a 5 5 .
Examples
input
3
4 4 4
output
2
input
4
5 4 5 5
output
0
input
4
5 3 3 5
output
1
Note
In the first sample, it is enough to redo two lab works to make two s into 5 5 s.
In the second sample, Vasya’s average is already so he doesn’t have to redo anything to get a 5 5 .
In the second sample Vasya has to redo one lab work to get rid of one of the s, that will make the average exactly 4.5 4.5 so the final grade would be 5 5 .
题解
排一遍序,从小到大填。
代码
#include<bits/stdc++.h>
using namespace std;
int a[105],sum,n;
void in(){scanf("%d",&n);for(int i=1;i<=n;++i)scanf("%d",&a[i]),sum+=a[i];}
void ac()
{
sort(a+1,a+1+n);
for(int i=0;i<=n;++i,sum=sum-a[i]+5)
if(sum>=4.5*n)printf("%d",i),exit(0);
}
int main(){in();ac();}
本文解析了CodeForces平台上B题“GettinganA”的解决思路及代码实现。该题目聚焦于通过重做部分作业来提升成绩平均分至最优等级。文章首先介绍了题目背景和要求,随后提出了解决方案——通过将较低分数的作业重做为满分来最小化所需重做的作业数量。
507

被折叠的 条评论
为什么被折叠?



