LL a,b,pos; }p[MS];booloperator< (node x,node y){if(x.b == y.b)returnx.a < y.a;// b相等时 ,a从 大到小 排序returnx.b > y.b;// b 从 小到大 排序} priority_queue<node > Q;intmain(){ ios::sync_with_stdio(false); cin >> n;for(inti=1;i<=n;i++){ LL t1,...
重定义的时候就如写sort时的cmp一样,最后将return时候的">","<"反过来就行 #include <bits/stdc++.h> #include <iostream> #include <algorithm> #include <stdio.h> #include <string.h> #include <stdlib.h> //#pragma GCC optimize("O2") using namespace std; #define LL long long #define ll ...