ABC 217

本文展示了两个实例,分别使用STL中的集合(set)处理区间查询问题和优先队列(priority_queue)模拟排序查询。在D-CuttingWoods问题中,通过set实现区间插入和查询操作。而在E-SortingQueries中,利用优先队列进行实时排序和查询,以处理不同类型的查询操作。这两个例子突显了STL和优先队列在算法和数据结构中的高效应用。
摘要由CSDN通过智能技术生成

STL场

D - Cutting Woods
set 自带排序功能,map也是

#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int maxn = 2e5 + 9;
const int mod = 998244353;
ll n, m, k, l, Q;
set <int> s;
set <int>::iterator it;
void work()
{
    cin >> l >> Q;
    s.insert(0);s.insert(l);
    while(Q--)
    {
    	cin >> m >> k;
    	if(m == 1) s.insert(k);
    	else 
    	{
    		it = s.lower_bound(k);
    		//auto it = s.lower_bound(k);如果懒得定义迭代器,可以用自动变量 auto,接收返回的迭代器
    		int ans = *it;
    		--it;
    		cout << (ans - *it) << endl;
		}
	}
}

int main()
{
	ios::sync_with_stdio(0);
    //int TT;cin>>TT;while(TT--)
    work();
    return 0;
}

E - Sorting Queries
优先队列模拟

#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int maxn = 2e5 + 9;
const int mod = 998244353;
ll n, m, k, l, Q;
ll a[maxn];
priority_queue <int, vector<int>, greater<int> > q;
void work()
{
    cin >> Q;
    int l = 1, r = 0;
    for(int i = 1; i <= Q; ++i)
    {
    	ll x, op;
    	cin >> op;
    	if(op == 1)
    	{
    		cin >> x;
    		a[++r] = x;
		}
		else if(op == 2)
		{
			if(q.empty())
			{
				cout << a[l] << endl;
				++l;
			}
			else 
			{
				cout << q.top() << endl;
				q.pop();
			}
		}
		else
		{
			for(int i = l; i <= r; ++i)
				q.push(a[i]);
			l = r + 1;
		}
	}
}

int main()
{
	ios::sync_with_stdio(0);
    //int TT;cin>>TT;while(TT--)
    work();
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值