题意:给你2个数组,让你求一个最大的p使得任意的(l,r)属于 1<=l<=r<=p   使得RMQ(a,l,r)==RMQ(b,l,r);

从第一个数开始往后找,比他大的数没有影响,只要碰见比栈顶元素小的数,就一直pop,直到遇见比他小的栈顶

#include<bits/stdc++.h>
using namespace std;
const int N=1e5+5;
int a[N],b[N];
int ta,tb;
stack<int> qa,qb;
int main(){
    int n;
    while(~scanf("%d",&n)){
        for(int i=1;i<=n;i++){
            scanf("%d",&a[i]);
        }
        for(int i=1;i<=n;i++){
            scanf("%d",&b[i]);
        }
        ta=0,tb=0;
        int ans=1;
        while(!qa.empty()) qa.pop();
        while(!qb.empty()) qb.pop();

        qa.push(a[1]);
        qb.push(b[1]);
        for(int i=2;i<=n;i++){
            if(a[i]>qa.top()&&b[i]>qb.top()){
                qa.push(a[i]);
                qb.push(b[i]);
                ans=i;
            }
            else if(qa.size()&&qb.size()&&a[i]<qa.top()&&b[i]<qb.top()){
                while(qa.size()&&a[i]<qa.top()) qa.pop();
                while(qb.size()&&b[i]<qb.top()) qb.pop();
                qa.push(a[i]);
                qb.push(b[i]);
                if(qa.size()!=qb.size()) break;
                else ans=i;
            }
            else break;
        }
        printf("%d\n",ans);
    }
    return 0;
}