博艾市有一个木材仓库,里面可以存储各种长度的木材,但是保证没有两个木材的长度是相同的。作为仓库负责人,你有时候会进货,有时候会出货,因此需要维护这个库存。有不超过 100000 条的操作:
1 Length
:在仓库中放入一根长度为 Length(不超过 \(10^9\)) 的木材。如果已经有相同长度的木材那么输出Already Exist
。2 Length
:从仓库中取出长度为 Length 的木材。如果没有刚好长度的木材,取出仓库中存在的和要求长度最接近的木材。如果有多根木材符合要求,取出比较短的一根。输出取出的木材长度。如果仓库是空的,输出Empty
。无
无
7
1 1
1 5
1 3
2 3
2 3
2 3
2 3
3
1
5
Empty
else {
j--;
if (*i - length < length - *j) j = i;
}
cout << *j << endl;
//这里可以写*j,也可以只写j,只写j表明删除j这个迭代器所对应的位置,写*j表明删除j所指向的这个元素
s.erase(*j);
#include<set>
#include<iostream>
using namespace std;
int n;
int x, length;
set<int> s;
int main()
{
cin >> n;
while (n--) {
cin >> x >> length;
if (x == 1) {
if (s.find(length) == s.end()) s.insert(length);
else cout << "Already Exist" << endl;
}
else if (x == 2) {
if (s.empty()) cout << "Empty" << endl;
else {
auto i = lower_bound(s.begin(),s.end(), length);
auto j = i;
if (i == s.begin()) j = i;
else if (i == s.end()) {
i--; j = i;
}
else {
j--;
if (*i - length < length - *j) j = i;
}
cout << *j << endl;
s.erase(*j);
}
}
}
return 0;
}