标签:思想 others php 上传 stdio.h while 大于 现在 ons
2 3 1 1 5 5 1 2 3 4 5
No Yes
1 #include<stdio.h> 2 #include<stdlib.h> 3 int a[1000005]; 4 int cmp(const void *a,const void *b) 5 { 6 return *(int*)a-*(int*)b; 7 } 8 int main() 9 { 10 int i,t,m; 11 long long int sum; 12 scanf("%d",&t); 13 while(t--) 14 { 15 sum = 0; 16 scanf("%d",&m); 17 for(i=0; i<m; i++) 18 { 19 scanf("%d",&a[i]); 20 sum+=a[i]; 21 } 22 qsort(a,m,sizeof(int),cmp); 23 if(2*a[m-1]-1 > sum) 24 printf("No\n"); 25 else 26 printf("Yes\n"); 27 } 28 return 0; 29 }
标签:思想 others php 上传 stdio.h while 大于 现在 ons
原文地址:https://www.cnblogs.com/-skyblue/p/9463882.html