rt,正常的结构体优先队列:
struct node { int a, b; bool operator > (const node &rhs)const { return b > rhs.b; } }; priority_queue<node, vector<node> , greater<node> >q;
但如果在结构体中再加上关于 <<< 或者 === 的运算符重载就会出锅,,,
求助各位大佬是什么原因qwq