题意:有n张地毯,后铺的在最上面,给你一个点,问这个点最上面的地毯的编号是什么贪心方法:因为在最上面的地毯肯定在后面,所以我们只需要倒着找就可以了代码: #include<cstdio> #include<iostream> #include<algorithm> using namespace std; typedef long long ll; const int maxn=1e5+10; typedef struct{ int a,b,x,y; }place; int main() { int n; place a[maxn]; ...