Two persons
Write a program that determines the number of pairs of people that can see each other.
Input Specification
The first line of input contains an integer
Each of the following
Everyone will be shorter than
The heights are given in the order in which people are standing in line.
Output Specification
Output the number of pairs of people that can see each other on a single line.
Sample Input
7
2
4
1
2
2
5
1
Sample Output
10
Comments
nvm
The problem is from the Croatian Olympiad in Informatics (COI), not the Croatian Open Competition in Informatics (COCI).
Is there a point inconsistency with https://dmoj.ca/problem/vmss7wc15c2p3? My solution AC's the latter but TLE's this one.
Java stack is too slow for this problem. Change your stack into an array which will resolve the TLE.