首页 > 其他 > 详细

.....

时间:2014-08-04 17:04:57      阅读:274      评论:0      收藏:0      [点我收藏+]
#include<stdio.h>
#include<vector>
#include<algorithm> 
using namespace std;
int main(){
   vector<int> gao1;
   int N,M; 
   scanf("%d%d",&N,&M); 
   int x; 
   for(int i=0;i<N;i++){
     scanf("%d",&x);
     gao1.push_back(x); 
   }
   sort(gao1.begin(),gao1.end()); 
   for(int i=0;i<M;i++){
      int x;
      scanf("%d",&x);
      vector<int>::iterator it=lower_bound(gao1.begin(),gao1.end(),4);
      if(it==gao1.end())puts("not found");
      else printf("%d\n",*it); 
   } 

} 

 

.....,布布扣,bubuko.com

.....

原文:http://www.cnblogs.com/michaeljunlove/p/3890366.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!