无敌的代码不需要解释
// 求右边第一个比他大的
#include <iostream>
#include <stack>
using namespace std;
const int N = 100010;
int a[N],b[N];
stack<int> stk;
int main(){
int n;
cin>>n;
for(int i=1;i<=n;i++){
cin>>a[i];
}
for(int i=n;i>0;i--){
while(!stk.empty()&&a[stk.top()]<=a[i]){
stk.pop();
}
if(!stk.empty()){
b[i]=stk.top();
}
stk.push(i);
}
for(int i=1;i<=n;i++){
cout<<b[i]<<endl;
}
return 0;
}