当前位置: 首页 > 工具软件 > Marble > 使用案例 >

Where is the Marble? -UVA 10474

云季萌
2023-12-01

题目:uva10474

水题 ,存入后排序,寻找第一个等于x值得位置。

代码如下:

#include<iostream>
#include<set>
#include<iterator>
#include<string>
#include<set>
#include<typeinfo>
#include<queue>
#include<list>
#include<algorithm>
#include<cstdio>
#include<cctype>
#include<cstring>
#include<map>
#include<vector>
#include<cstdlib>
#include<cmath>
#include<stack>
#include<sstream>
#include<iomanip>
const int maxn = 10000;
using namespace std;
 int test;
int main()
{
    vector<int> a;
    int n,m;
    int kase = 0;
    while(scanf("%d%d",&n,&m)==2&&n)
    {
        int tmp;
        a.clear();
        for(int i =0;i<n;i++){
                scanf("%d",&tmp);
            a.push_back(tmp);
        }
        sort(a.begin(),a.end());
        printf("CASE# %d:\n",++kase);
    for(int i=0;i<m;i++)
    {
        int j;
        scanf("%d",&test);
        for(j=0;j<a.size();j++)
            if(test==a[j])
        {
            printf("%d found at %d\n",test,j+1);
            break;
        }
        if(j==a.size())
            printf("%d not found\n",test);
    }


    }
}
按照入门经典  可以用 lower_bound 函数 


lower_bound 和 upper_bound 函数:

1  lower_bound 寻找 x最少能插入哪个位置 

2  upper_bound寻找 x最大能插入那个位置

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
int main()
{
    int a[15];
    for(int i= 0;i<10;i++)
        a[i]=i+1;
    int p=lower_bound(a,a+10,3)-a;
    int q=upper_bound(a,a+10,3)-a;
    cout<<p<<endl<<q<<endl;
}



 

 类似资料:

相关阅读

相关文章

相关问答