题解 | #查找#

查找

https://www.nowcoder.com/practice/8e0c0e8c78944847be9bca54b59d713f

#include<bits/stdc++.h>
using namespace std;
int main() {
    set<int>s;
    //write your code here......
    int n, m, x, num;

    cin >> n >> m;

    for (int i = 0; i < n; i++) {
        cin >> num;
        s.insert(num);
    }

    for (int i = 0; i < m; i++) {
        cin >> x;

        auto iter = s.upper_bound(x);
		
        if (iter == s.end()) {
            cout << -1 << endl;
        } else {
            cout << *iter << endl;

        }
    }

    return 0;
}

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务