为什么总是运行超时 ,。。。。通过率只有40%? #include <iostream> #include <algorithm> const int Max= 1e7+5; using namespace std; struct gift{ int a; int b; }gs[Max]; int cmp(gift &A, gift &B){ if(A.a != B.a){ return A.a <B.a; } else{ return A.b >...