优先队列与贪心

本文介绍了如何在C++中使用`priority_queue`模板,包括整数优先队列和字符串优先队列的实现,以及自定义结构体AC的使用,展示了异或操作在队列中的应用。
摘要由CSDN通过智能技术生成
//优先队列模版

#include<bits/stdc++.h>
using namespace std;
priority_queue<pair<int,int>> q;
priority_queue<string,vector<string>,greater<string> > p;
struct AC{
    int x,y;
    bool operator < (AC a)const{
        if(y==a.y)return x>a.x;
        return y<a.y;
    }
    AC operator + (AC a)const{
        AC ret;
        ret.x=x^a.y;
        ret.y=y^a.x;
        return ret;
    }
};
priority_queue<AC> qq;
signed main(){
    q.push(make_pair(1,5));
    q.push(make_pair(2,3));
    q.push(make_pair(3,1));
    q.push(make_pair(3,4));
    for(int i=1;i<=4;i++){
        // printf("%d %d\n",q.top().first,q.top().second);
        q.pop();
    }
    p.push("ababba");
    p.push("babbab");
    for(int i=1;i<=2;i++){
        // cout<<p.top()<<endl;
        p.pop();
    }
    AC aa;aa.x=1;aa.y=5;
    qq.push(aa);
    qq.push(AC{2,3});
    qq.push(AC{3,1});
    qq.push(AC{3,4});
    for(int i=1;i<=4;i++){
        printf("%d %d\n",qq.top().x,qq.top().y);
        qq.pop();
    }
    AC a,b,c;
    a=AC{1,2};b=AC{3,4};
    c=a+b;
    printf("%d %d\n",c.x,c.y);
}
/*

1 1 1 1 1 2

2 2 2 2 2 100000



1 25 1 1

1 60 55 1


n val_i weg_i m



*/

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值