Cdzsc_2015 new Winter Holiday (1)--Basic C

Source: Internet
Author: User

Description

Fatmouse prepared M pounds of cat food, ready-to-trade with the cats guarding the warehouse containing he favorite food,        JavaBean. The warehouse has N rooms. The i-th contains j[i] pounds of JavaBeans and requires f[i] pounds of cat food. Fatmouse does not has the to trade for all the JavaBeans in the the the same, instead, he may get j[i]* a% of pounds JavaBeans if he Pays f[i]* a% pounds of cat food. Here A is a real number. Now he's assigning this homework to you:tell him the maximum amount of JavaBeans he can obtain.

Input

The input consists of multiple test cases. Each test case is begins with a line containing the non-negative integers M and N. Then N lines follow, each contains, non-negative integers j[i] and f[i] respectively. The last test case was followed by Two-1 ' s. All integers is not greater than 1000.

Output

For each test case, print in a single line a real number accurate up to 3 decimal places, which is the maximum amount of J Avabeans that Fatmouse can obtain.

Sample Input

5 37 24 35 220 325 1824 1515 10-1-1

Sample Output

13.33331.500
#include <iostream>#include<cstdio>#include<algorithm>using namespacestd;structlaoshu{intJ; intF; Doubles;};BOOLCMP (Laoshu Stud1,laoshu stud2) {returnStud1.s>Stud2.s;}intMain () {#ifdef cdzsc_offline freopen ("In.txt","R", stdin);#endif    intI,m,n; Doublesum; Laoshu stud[1010];  while(SCANF ("%d%d", &m,&n) &&m!=-1&&n!=-1) {sum=0;  for(i=0; i<n; i++) {scanf ("%d%d",&stud[i].j,&stud[i].f); Stud[i].s=1.0*stud[i].j/stud[i].f; } sort (Stud,stud+n,cmp);  for(i=0; i<n; i++)        {            if(m>=stud[i].f) {Sum+=STUD[I].J; M-=stud[i].f; }            Else{sum+=stud[i].s*m;  Break; }} printf ("%.3lf\n", sum); }    return 0;}

Cdzsc_2015 new Winter Holiday (1)--Basic C

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.