摘要: int n; int ans = 0; PII a[N]; // 定义priority_queue的比较函数 struct cmp { bool operator() (PII a, PII b) { return a.second > b.second; } }; priority_queue<P 阅读全文
posted @ 2024-05-25 15:51 lightmon 阅读(4) 评论(0) 推荐(0) 编辑