为啥是0分啊

P2249 【深基13.例1】查找

zxfbit @ 2024-02-17 16:09:04

#include<cstdio>
#include<algorithm>
using namespace std;
const int MAXN=1e6+10;
int read(){
    int x=0,f=1;
    char c=getchar();
    while(c<'0'||c>'9'){
        if(c=='-') f=-1;
        c=getchar();
    }
    while(c>='0'&&c<='9'){
        x=x*10+c-'0';
        c=getchar();
    }
    return x*f;
}
int a[MAXN];
int main()
{
    int n=read(),m=read();
    for(int i=1;i<=n;i++) a[i]=read();
    while(m--)
    {
        int x=read();
        int ans=lower_bound(a+1,a+n+1,x)-a;
        if(x!=a[ans]) printf("-1");
        else printf("%d ",ans);
    }
    return 0;
}

by szlh_XJS @ 2024-02-17 16:20:50

直接cin>>x不好吗,干嘛要读入字符


by szlh_XJS @ 2024-02-17 16:23:30

lower_bound 函数返回的是一个指向大于或等于给定值的第一个元素的迭代器,而不是索引位置。因此,需要将迭代器转换为索引位置时,要记得计算偏移量。


by szlh_XJS @ 2024-02-17 16:24:09

输出后面要加空格


by szlh_XJS @ 2024-02-17 16:25:06

修改后

#include <bits/stdc++.h>
using namespace std;

const int MAXN = 1e6 + 10;
int a[MAXN];

int main() {
    int n, m;
    cin >> n >> m;

    for (int i = 1; i <= n; i++) {
        cin >> a[i];
    }

    while (m--) {
        int x;
        cin >> x;

        int* ans = lower_bound(a + 1, a + n + 1, x);
        if (ans == a + n + 1 || *ans != x) {
            printf("-1 ");
        } else {
            int index = ans - a;
            printf("%d ", index);
        }
    }

    return 0;
}

亲测,满分


|