Rokua-who took the most scholarship-noip2005 improve the group rematch

Source: Internet
Author: User

Title Description Description

The practice of a school is to grant scholarships after the final exams of each semester. There are five scholarships issued, and the conditions for obtaining them are different:

1) Academician scholarship, 8000 yuan per person, the end of the average score of more than 80 points (>80), and in this semester published 1 or more than 1 papers students can be obtained;

2) May Fourth Scholarship, 4000 yuan per person, the end of the average score is higher than 85 points (>85), and the class appraisal result is higher than 80 (>80) students can be obtained;

3) Outstanding Achievement Award, 2000 yuan per person, students who have a final average score above 90 (>90) can be obtained;

4) Western Scholarship, 1000 yuan per person, and students from western provinces with a final average score above 85 (>85);

5) Class Contribution award, 850 yuan per person, the class appraisal result is higher than 80 points (>80) student cadres can be obtained;
As long as the criteria are met, there is no limit to the number of winners for each scholarship, and a number of scholarships are available for each student. For example, Yiao Lin's end-of-term average is 87 points, Class review score 82 points, and he is a student cadre, then he can also receive May Fourth Scholarship and Class contribution award, the total bonus is 4850 yuan.

Now give the relevant data for several students, please calculate which students get the highest total bonus (assuming that the students can meet the conditions for the scholarship). input/output format input/output Input Format:
The first line of the input file scholar.in is an integer N (1 <= n <= 100) that represents the total number of students. The next n rows each row is a student's data, from left to right in turn is the name, the end of the average score, the class appraisal results, whether the student cadre, is the western Province students, as well as the number of papers published. The name is a string of not more than 20 of the length of the letter in the case of uppercase and lowercase letters (without spaces); The final average and class review scores are integers between 0 and 100 (including 0 and 100), whether student cadres and Western provinces students are represented by a single character, y means yes, n means not The number of papers published is 0 to 10 integers (including 0 and 10). Each of the two adjacent data items is separated by a space.
output Format:
The output file Scholar.out includes three lines, the first row is the name of the student who received the most bonus, and the second line is the total number of bonuses that the student received. If there are two or two students who receive the most bonuses, the first student's name appears in the input file. The third line is the total number of scholarships received by these n students. input and Output sample sample Input/output sample Test point # #

Input Sample:

4
Yaolin, 0, Y N
Chenruiyi N Y 1
LiXin N N 0
Zhangqin, Y N 1

Sample output:

Chenruiyi
9000
28700

Idea: This problem can be more convenient with the structure, store each student's information, cycle judgment, and finally find the maximum value can

The code is as follows:

1#include <stdio.h>2#include <string.h>3 structStu4 {5     Charname[ -];6     intQimo;7     intBanji;8     CharGanbu;9     CharXibu;Ten     intLunwen; One     intans; A }; - intMain () - { the     structStu a[101]; -     intn,i; -     intAnswer,answer2=0, Lala; -     CharASDASD; +scanf"%d",&n); -      for(i=0; i<n;i++) +     { Ascanf"%s", a[i].name); atscanf"%d",&A[i].qimo); -scanf"%d",&A[i].banji); -scanf"%c", &AMP;ASDASD);//Absorbing Spaces -scanf"%c",&A[i].ganbu); -scanf"%c", &AMP;ASDASD);//Absorbing Spaces -scanf"%c",&A[i].xibu);  inscanf"%d",&A[i].lunwen); -     } to      for(i=0; i<n;i++) +     { -         if(a[i].qimo> the&&a[i].lunwen>0) a[i].ans+=8000;//Academician Scholarship the         if(a[i].qimo> -&&a[i].banji> the) a[i].ans+=4000;//May Fourth Scholarships *         if(a[i].qimo> -) a[i].ans+= -;//Outstanding Achievement Award $         if(a[i].qimo> -&&a[i].xibu=='Y') a[i].ans+= +;//Western ScholarshipPanax Notoginseng         if(a[i].banji> the&&a[i].ganbu=='Y') a[i].ans+=850;//Class Contribution Award -     } theanswer=a[0].ans;//finding the maximum value +      for(i=0; i<n;i++) A     { the         if(a[i].ans>answer) +         { -Answer=A[i].ans; $Lala=i;//record the maximum subscript $         } -Answer2+=a[i].ans;//Plus -     } theprintf"%s\n%d\n%d\n", a[lala].name,a[lala].ans,answer2); -     return 0;Wuyi}

Rokua-who took the most scholarship-noip2005 improve the group rematch

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.