码迷,mamicode.com
首页 > 其他好文 > 详细

CCF中间数

时间:2017-03-10 20:51:10      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:name   中间   i++   for   count   ccf   sort   iostream   printf   

#include<iostream>
#include<algorithm>
using namespace std;
int main(){
int n;
cin>>n;
int a[n];
int i,j,count1 = 0,count2 = 0;
for(i=0;i<n;i++) cin>>a[i];
sort(a,a+n);

for(i=0;i<n;i++){

if(a[i]>a[n/2]) count1++;
else if(a[i]<a[n/2])count2++;

}
if(count1 == count2) printf("%d",a[n/2]);
else printf("-1");

return 0;
}

CCF中间数

标签:name   中间   i++   for   count   ccf   sort   iostream   printf   

原文地址:http://www.cnblogs.com/whitehouse2016/p/6532743.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!