import java.util.*;
public class Main {
public static void main(String args[]) throws Exception {
// Your Code Here
Scanner s = new Scanner(System.in);
int N=s.nextInt();
Main mainobj = new Main();
int[] prices=new int[N];
for(int i=0;i<N;i++){
prices[i]=s.nextInt();
}
StacksUsingArrays stack = mainobj.new StacksUsingArrays(prices.length);
int[] ans=StockSpanUsingStacks(prices, stack);
for(int i=0;i<ans.length;i++){
System.out.print(ans[i]+" ");
}
System.out.println("END");
}
public static int[] StockSpanUsingStacks(int[] prices, StacksUsingArrays stack) throws Exception {
int n=prices.length;
int sol[]=new int[n];
stack.push(0);
sol[0]=1;
for(int i=1;i<n;i++){
while(!stack.isEmpty() && prices[stack.top()]<=prices[i])
stack.pop();
sol[i]=(stack.isEmpty()) ? (i+1):(i-stack.top());
stack.push(i);
}
return sol;
}
private class StacksUsingArrays {
private int[] data;
private int tos;
public static final int DEFAULT_CAPACITY = 10;
public StacksUsingArrays() throws Exception {
// TODO Auto-generated constructor stub
this(DEFAULT_CAPACITY);
}
public StacksUsingArrays(int capacity) throws Exception {
if (capacity <= 0) {
System.out.println("Invalid Capacity");
}
this.data = new int[capacity];
this.tos = -1;
}
public int size() {
return this.tos + 1;
}
public boolean isEmpty() {
if (this.size() == 0) {
return true;
} else {
return false;
}
}
public void push(int item) throws Exception {
if (this.size() == this.data.length) {
throw new Exception("Stack is Full");
}
this.tos++;
this.data[this.tos] = item;
}
public int pop() throws Exception {
if (this.size() == 0) {
throw new Exception("Stack is Empty");
}
int retVal = this.data[this.tos];
this.data[this.tos] = 0;
this.tos--;
return retVal;
}
public int top() throws Exception {
if (this.size() == 0) {
throw new Exception("Stack is Empty");
}
int retVal = this.data[this.tos];
return retVal;
}
public void display() throws Exception {
if (this.size() == 0) {
throw new Exception("Stack is Empty");
}
for (int i = this.tos; i >= 0; i--) {
System.out.println(this.data[i]);
}
}
}
}
What is wrong with my code?