题解 | #查找#

查找

http://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;
    cin>>n>>m;
    for (int i = 0; i < n; i++) {
        cin>>x;
        s.insert(x);
    }
    while (m--) {
        cin>>x;
        auto it = s.upper_bound(x);
        if (it == s.end()) cout<<-1<<endl;
        else cout<<*it<<endl;
    }
	return 0;
}
全部评论

相关推荐

在评审的大师兄很完美:像这种一般就是部门不匹配 转移至其他部门然后挂掉 我就是这样被挂了
点赞 评论 收藏
分享
10-05 23:02
东北大学 Java
我说句实话啊:那时候看三个月培训班视频,随便做个项目背点八股,都能说3 40w是侮辱价
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务