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

uva 10474 Where is the Marble?[ vector ]

时间:2014-10-31 22:19:20      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:io   os   ar   for   sp   amp   as   ios   algorithm   

思路:sort+low_bound()二分


#include<vector>
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<set>
using namespace std;



int main()
{
    vector<int>v;
    int n,m;
    int cas=1;
    while(scanf("%d%d",&n,&m),n||m)
    {
        int t;
        v.clear();
        for(int i=0;i<n;i++)
        {
            cin>>t;
            v.push_back(t);
        }
        sort(v.begin(),v.end());
        cout<<"CASE# "<<cas++<<":"<<endl;
        for(int i=0;i<m;i++)
        {
            cin>>t;
            int pos=lower_bound(v.begin(),v.end(),t)-v.begin();     //大于等于t的第一个元素
            if(v[pos]==t)
                cout<<t<<" found at "<<pos+1<<endl;
            else
                cout<<t<<" not found\n";
        }
    }
    return 0;

}


uva 10474 Where is the Marble?[ vector ]

标签:io   os   ar   for   sp   amp   as   ios   algorithm   

原文地址:http://blog.csdn.net/code_or_code/article/details/40660331

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