map容器的初体验

来源:互联网 发布:端口定义 编辑:程序博客网 时间:2024/06/05 12:07

In college, a student may take several courses. for each course i, he earns a certain credit (c i), and a mark ranging from A to F, which is comparable to a score (s i), according to the following conversion table 

The GPA is the weighted average score of all courses one student may take, if we treat the credit as the weight. In other words, 

An additional treatment is taken for special cases. Some courses are based on “Pass/Not pass” policy, where stude nts earn a mark “P” for “Pass” and a mark “N” for “Not pass”. Such courses are not supposed to be considered in computation. These special courses must be ignored for computing the correct GPA. 
Specially, if a student’s credit in GPA computation is 0, his/her GPA will be “0.00”.
Input
There are several test cases, please process till EOF. 
Each test case starts with a line containing one integer N (1 <= N <= 1000), the number of courses. Then follows N lines, each consisting the credit and the mark of one course. Credit is a positive integer and less than 10.
Output
For each test case, print the GPA (rounded to two decimal places) as the answer.
Sample Input
52 B3 D-2 P1 F3 A22 P2 N64 A3 A3 A4 A3 A3 A
Sample Output
2.330.004.00



#include <iostream>#include <cstdio>#include <map>#include <string>using namespace std;int main(){   map <string,double> mp;    int n;    mp["A"]=4.0;    mp["A-"]=3.7;    mp["B+"]=3.3;    mp["B"]=3.0;    mp["B-"]=2.7;    mp["C+"]=2.3;    mp["C"]=2.0;    mp["C-"]=1.7;    mp["D"]=1.3;    mp["D-"]=1.0;    mp["F"]=0;    mp["P"]=0;    mp["N"]=0;    while(~scanf("%d",&n))    {   double   score=0.0;        double   all=0.0;        string s;        double  a;        for(int i=1;i<=n;i++)         {    cin>>a>>s;              if(s=="P"||s=="N")                 continue;              else                {score+=a;                all+=a*mp[s];}         }          //printf("%lf %lf\n",score,all);          if(score!=0.0&&all!=0.0)          printf("%.2lf\n",all/score);          else            cout<<"0.00"<<endl;    }    return 0;}



0 0
原创粉丝点击