欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

5-1大理石在哪?

程序员文章站 2024-03-18 23:34:52
...

问题:现有N个大理石,每个大理石上写了一个非负整数。首先把各数从小到大排序,然后回答Q个问题。每个问题问是否有一个大理石写着某个整数x,如果是,还要回答哪个大理石上写着x。排序后的大理石从左到右编号为1~N
样例输入:

4 1
2 3 5 1
5

样例输出:

CASE# 1:
5 found at 4

用algorithm头文件中的sort()和lower_bound()

#include<cstdio>
#include<algorithm>
using namespace std;

const int maxn = 1000;

int main()
{
    int n, q, x,a[maxn], kase = 0;
    while (scanf_s("%d%d",&n, &q) == 2 && n)
    {
        printf("CASE# %d:\n", ++kase);
        for (int i = 0;i < n;++i)
        {
            scanf_s("%d", &a[i]);
        }
        sort(a,a + n);
        while (q--)
        {
            scanf_s("%d", &x);
            int p = lower_bound(a, a + n, x)-a;//返回的是位置
            if (a[p] == x)  printf("%d found at %d\n",x,p+1);
            else printf("%d not found\n", x);

        }
    }
    getchar();
    return 0;
}
相关标签: 算法竞赛 STL