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

.....

时间:2014-08-04 17:04:57      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   div   amp   log   

#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

.....

标签:style   blog   color   io   for   div   amp   log   

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

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