洛谷 P5250 【深基17.例5】木材仓库
题目描述
博艾市有一个木材仓库,里面可以存储各种长度的木材,但是保证没有两个木材的长度是相同的。作为仓库负责人,你有时候会进货,有时候会出货,因此需要维护这个库存。有不超过 100000 条的操作:
- 进货,格式
1 Length
:在仓库中放入一根长度为 Length(不超过 10^9109) 的木材。如果已经有相同长度的木材那么输出Already Exist
。 - 出货,格式
2 Length
:从仓库中取出长度为 Length 的木材。如果没有刚好长度的木材,取出仓库中存在的和要求长度最接近的木材。如果有多根木材符合要求,取出比较短的一根。输出取出的木材长度。如果仓库是空的,输出Empty
。
输入格式
无
输出格式
无
输入输出样例
输入 #1
7
1 1
1 5
1 3
2 3
2 3
2 3
2 3
输出 #1
3
1
5
Empty
分析
set练习题
代码
#include<bits/stdc++.h> using namespace std; int n,m,q; set<int> st; int main() { cin>>q; while(q--) { cin>>n>>m; if(n==1) { int f=st.size(); st.insert(m); if(st.size()==f) { cout<<"Already Exist"<<endl; } continue; } else if(n==2) { if(st.empty()) { cout<<"Empty"<<endl; continue; } set<int>::iterator it,it2,it3; it=it2=it3=st.lower_bound(m); if(*it==m||it==st.begin())//存在相等 { cout<<*it<<endl; st.erase(it); continue; } else if(it==st.end()) { cout<<*(--it2)<<endl; st.erase(*it2); continue; } else { if(abs(*it-m)<abs(m-(*--it3)))//大根离目标更近 { cout<<*it<<endl; st.erase(*it); continue; } else { cout<<(*it3)<<endl; st.erase(*it3); } } } } return 0; }