Student council is looking to organize a school brunch, where the proceeds will be put towards a year-end trip for the graduating class. The council members decide that the price depends on how many years you have been at the school. For someone who has been at the school for one year (Y1?), the price will be $12, for someone who has been at the school for two years (Y2?), the price will be $10, the three-year (Y3?) price will be $7, and the price for someone who has been there all four years (Y4?) will be $5. Out of all the proceeds, 50% can be saved towards the year-end trip, as the other 50% is spent on the various costs to run the brunch. Given the following input data, calculate whether or not the council will need to raise additional funds. Input Specification The input contains 10 trips, at 3 lines of data per trip. - For each of the trips, the first line will show the cost of the trip as an integer ($50 to $50000). - The next line contains four floating point numbers Y1?,Y2?,Y3?Y4?(0?Y1?,Y2?,Y3?,Y4??1 and Y1?+Y2?+Y3?+Y4?=1) representing the percentages of the total number of students from years 1 through 4 respectively. - The third line contains a single number N, which contains the total number of students attending the brunch (4?N?2000). Note: You cannot have less than a whole person (e.g., 1.8 people is the same as 1 person). Any missing or extra people should be removed from or added to the group with the highest percentage of attendees. There will always be exactly one group with the highest percentage of attendees. Output Specification Output YES if the student council needs to find other funding, and NO if the council has raised sufficient funds. Sample Input 4000 0.5?0.2?0.1?0.2? 400 6000 0.10 .10 .450 .35 2000