标签:cin turn else 一个 output sof 输出 blog rdo
Input第一行有一个整数T,接下来T组数据,每组数据占2行,第一行是一个整数N(0<N<=1000000),第二行是N个数,表示N种糖果的数目Mi(0<Mi<=1000000)。
Output对于每组数据,输出一行,包含一个"Yes"或者"No"。
Sample Input
2
3
4 1 1
5
5 4 3 2 1
Sample Output
No Yes
解题思路:只要sum-MAX >= MAX - 1就可以了
1 #include <iostream>
2
3 using namespace std;
4
5 int main()
6 {
7 int N;
8 cin>>N;
9 while(N--)
10 {
11 double sum = 0;
12 double Max = 0;
13 double n;
14 cin>>n;
15 for(int i = 1;i<=n;i++)
16 {
17 double temp ;
18 cin>>temp;
19 sum+=temp;
20 Max = Max > temp? Max:temp;
21 }
22
23 if(sum - Max >= Max - 1)
24 cout<<"Yes"<<endl;
25 else
26 cout<<"No"<<endl;
27
28
29 }
30
31 return 0;
32 }
E - Problem E ( 吃糖) :HDU - 1205
标签:cin turn else 一个 output sof 输出 blog rdo
原文地址:http://www.cnblogs.com/a2985812043/p/7289231.html