872. Pattern Bool

0

Medium

Given an array of integers, Sam needs to determine if there exists a triplet (i, j, k) that satisfies the following conditions:
1. i < j < k 2. a[i] < a[k] < a[j]. If both conditions are met, print 1; otherwise, print 0.

Input Format

The first line contains the length of the array. The second line contains the elements of the array separated by spaces.

Output Format

Print a single letter 0 or 1.

Example

Input

4 1 2 3 4

Output

0

Constraints

1 <= n <= 2 * 10^5
-10^9 <= nums[i] <= 10^9
Loading...

View Submissions

Console