Hangzhou electric HDU 1205 eat sweets

Source: Internet
Author: User

Eat candy Time limit:6000/3000 MS (java/others) Memory limit:65535/32768 K (java/others)
Total submission (s): 27178 Accepted Submission (s): 7691


Problem Descriptionhoho, finally from Speakless hand to win all the candy, is Gardon eat candy when there is a special hobby, is not like the same candy put together to eat, like to eat first, the next time to eat another, so But Gardon don't know if there is a candy-eating order so he can finish all the candies? Please write a program to help calculate.

Input first line has an integer t, the next T-group data, each group of data accounted for 2 rows, the first row is an integer n (0<n<=1000000), the second row is n number, indicating the number of n candies Mi (0<mi<=1000000).

Output for each set of data, outputs a line that contains a "Yes" or "No".

Sample Input
234 1 155 4 3 2 1

Sample Output
NoYesHintHintuse function scanf

Authorgardon is very easy to think as long as all the sweets in the largest one with the rest of the candy can be separated, do not know why--int64 always mutation error instead of a double time-out and then write in C just past
#include <stdio.h>int main () {int t;scanf ("%d", &t), while (t--) {double sum=0;int n,max=-1,t;scanf ("%d",& N); for (int i=0;i<n;i++) {scanf ("%d", &t); Sum+=t;if (T>max) max=t;} Sum-=max;if (sum>=max-1) printf ("yes\n"); elseprintf ("no\n");} return 0;}

Hangzhou electric HDU 1205 eat sweets

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.