#include <iostream>
#include <vector>
#include <stack>
#include <queue>
#include <algorithm>
#include <cmath>
using namespace std;
const int N=2000022;
int tab[N];
int wiekszy[N];
int odl[N];
stack<int> st;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
int n;
cin>>n;
int maks=-1;
int wynik=0;
for(int i=0; i<n;i++)
{
cin>>tab[i];
maks = max(tab[i],maks);
tab[i+n]=tab[i];
}
for(int i=0;i<2*n;i++)
{
while(!st.empty() && tab[st.top()]<tab[i])
{
wiekszy[st.top()]=i;
st.pop();
}
st.push(i);
}
//1 7 2 3 7 2 9
for(int i=2*n-1;i>=0;i--)
{
if(tab[i]==maks)
{
odl[i]=1;
}
else
{
odl[i]=odl[wiekszy[i]]+1;
}
}
for(int i=0;i<n;i++)
{
wynik=max(wynik,odl[i]);
}
cout<<wynik;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | #include <iostream> #include <vector> #include <stack> #include <queue> #include <algorithm> #include <cmath> using namespace std; const int N=2000022; int tab[N]; int wiekszy[N]; int odl[N]; stack<int> st; int main() { ios::sync_with_stdio(0); cin.tie(0); int n; cin>>n; int maks=-1; int wynik=0; for(int i=0; i<n;i++) { cin>>tab[i]; maks = max(tab[i],maks); tab[i+n]=tab[i]; } for(int i=0;i<2*n;i++) { while(!st.empty() && tab[st.top()]<tab[i]) { wiekszy[st.top()]=i; st.pop(); } st.push(i); } //1 7 2 3 7 2 9 for(int i=2*n-1;i>=0;i--) { if(tab[i]==maks) { odl[i]=1; } else { odl[i]=odl[wiekszy[i]]+1; } } for(int i=0;i<n;i++) { wynik=max(wynik,odl[i]); } cout<<wynik; } |
English