• HDU 4968 Improving the GPA


    Improving the GPA

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)
    Total Submission(s): 652    Accepted Submission(s): 476


    Problem Description
    Xueba: Using the 4-Point Scale, my GPA is 4.0.

    In fact, the AVERAGE SCORE of Xueba is calculated by the following formula:
    AVERAGE SCORE = ∑(Wi * SCOREi) / ∑(Wi) 1<=i<=N

    where SCOREi represents the scores of the ith course and Wi represents the credit of the corresponding course.

    To simplify the problem, we assume that the credit of each course is 1. In this way, the AVERAGE SCORE is ∑(SCOREi) / N. In addition, SCOREi are all integers between 60 and 100, and we guarantee that ∑(SCOREi) can be divided by N.

    In SYSU, the university usually uses the AVERAGE SCORE as the standard to represent the students’ level. However, when the students want to study further in foreign countries, other universities will use the 4-Point Scale to represent the students’ level. There are 2 ways of transforming each score to 4-Point Scale. Here is one of them.


    The student’s average GPA in the 4-Point Scale is calculated as follows:
    GPA = ∑(GPAi) / N

    So given one student’s AVERAGE SCORE and the number of the courses, there are many different possible values in the 4-Point Scale. Please calculate the minimum and maximum value of the GPA in the 4-Point Scale.
     
    Input
    The input begins with a line containing an integer T (1 < T < 500), which denotes the number of test cases. The next T lines each contain two integers AVGSCORE, N (60 <= AVGSCORE <= 100, 1 <= N <= 10).
     
    Output
    For each test case, you should display the minimum and maximum value of the GPA in the 4-Point Scale in one line, accurate up to 4 decimal places. There is a space between two values.
     
    Sample Input
    4
    75 1
    75 2
    75 3
    75 10
     
    Sample Output
    3.0000 3.0000
    2.7500 3.0000
    2.6667 3.1667
    2.4000 3.2000
    Hint
    In the third case, there are many possible ways to calculate the minimum value of the GPA in the 4-Point Scale. For example,
    Scores 78 74 73 GPA = (3.0 + 2.5 + 2.5) / 3 = 2.6667
    Scores 79 78 68 GPA = (3.0 + 3.0 + 2.0) / 3 = 2.6667
    Scores 84 74 67 GPA = (3.5 + 2.5 + 2.0) / 3 = 2.6667
    Scores 100 64 61 GPA = (4.0 + 2.0 + 2.0) / 3 = 2.6667
     
    Author
    SYSU
     
    Source
     
     
     
    解析:题中GPA分为5种档次,N <= 10,数据量比较小,可以直接枚举每种档次的GPA的课程数。对于每种可能方案,算出该方案下的最低总分和最高总分。如果输入的总分在此范围内,说明该方案是可行的。算出所有可行方案中的最小GPA和最大GPA即可。
     
     
     
     1 #include <cstdio>
     2 
     3 int T;
     4 int AVGSCORE,N;
     5 int sumscore;
     6 int max_score,min_score;
     7 double max_gpa,min_gpa;
     8 
     9 int main()
    10 {
    11     scanf("%d",&T);
    12     while(T--){
    13         scanf("%d%d",&AVGSCORE,&N);
    14         sumscore = AVGSCORE*N;
    15         max_gpa = -1.0;
    16         min_gpa = 0x7fffffff;
    17         for(int i = 0; i <= N; ++i)
    18             for(int j = 0; j<= N-i; ++j)
    19                 for(int k = 0; k <= N-i-j; ++k)
    20                     for(int l = 0; l <= N-i-j-k; ++l){
    21                         int m = N-i-j-k-l;
    22                         max_score = 100*i+84*j+79*k+74*l+69*m;
    23                         min_score = 85*i+80*j+75*k+70*l+60*m;
    24                         if(sumscore <= max_score && sumscore >= min_score){
    25                             double gpa = 4.0*i+3.5*j+3.0*k+2.5*l+2.0*m;
    26                             if(gpa>max_gpa)
    27                                 max_gpa = gpa;
    28                             if(gpa<min_gpa)
    29                                 min_gpa = gpa;
    30                         }
    31                     }
    32         max_gpa /= N;
    33         min_gpa /= N;
    34         printf("%.4f %.4f
    ",min_gpa,max_gpa);
    35     }
    36     return 0;
    37 }
  • 相关阅读:
    Python 6 socket编程
    Python 5 面向对象进阶
    Python 4 面向对象
    Python 3 常用模块
    Python基础 2
    Python基础 1
    Django之会议室预预订
    vscode 修改快捷键 (回到上一处光标位置,下一处光标位置)
    C 库函数
    C 库函数
  • 原文地址:https://www.cnblogs.com/inmoonlight/p/5173628.html
Copyright © 2020-2023  润新知