可以學一下pair還有sort()函式中第三個參數的用法
這題就輕鬆解決
bool cmp1(pair<int,int> a, pair<int,int>b){
if(a.second==b.second) return a.first<b.first;
else return a.second>b.second;
}
sort(p, p+n, cmp1);
可以學一下pair還有sort()函式中第三個參數的用法 這題就輕鬆解決 bool cmp1(pair<int,int> a, pair<int,int>b){ if(a.second==b.second) return a.first<b.first; else return a.second>b.second; } sort(p, p+n, cmp1);
還有struct也可以喔,在sort的使用方法也差不多