代码拉取完成,页面将自动刷新
/*
* @lc app=leetcode.cn id=710 lang=cpp
*
* [710] 黑名单中的随机数
*/
// @lc code=start
class Solution {
unordered_map<int, int> b2w;
int bound;
public:
Solution(int n, vector<int>& blacklist) {
int m = blacklist.size();
bound = n - m;
unordered_set<int> black;
for (int b : blacklist) {
if (b >= bound) {
black.emplace(b);
}
}
int w = bound;
for (int b : blacklist) {
if (b < bound) {
while (black.count(w)) {
++w;
}
b2w[b] = w++;
}
}
}
int pick() {
int x = rand() % bound;
return b2w.count(x) ? b2w[x] : x;
}
};
/**
* Your Solution object will be instantiated and called as such:
* Solution* obj = new Solution(n, blacklist);
* int param_1 = obj->pick();
*/
// @lc code=end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。