CF766B.Mahmoud and a Triangle

传统题 时间 2000 ms 内存 256 MiB 5 尝试 1 已通过 1 标签

Mahmoud and a Triangle

Mahmoud has n line segments, the i-th of them has length a**i. Ehab challenged him to use exactly 3 line segments to form a non-degenerate triangle. Mahmoud doesn't accept challenges unless he is sure he can win, so he asked you to tell him if he should accept the challenge. Given the lengths of the line segments, check if he can choose exactly 3 of them to form a non-degenerate triangle.

Mahmoud should use exactly 3 line segments, he can't concatenate two line segments or change any length. A non-degenerate triangle is a triangle with positive area.

Input

The first line contains single integer n (3 ≤ n ≤ 105) — the number of line segments Mahmoud has.

The second line contains n integers a1, a2, ..., a**n (1 ≤ a**i ≤ 109) — the lengths of line segments Mahmoud has.

Output

In the only line print "YES" if he can choose exactly three line segments and form a non-degenerate triangle with them, and "NO" otherwise.

Note

For the first example, he can use line segments with lengths 2, 4 and 5 to form a non-degenerate triangle.

Samples

5
1 5 3 2 4
YES
3
4 1 2
NO

在线编程 IDE

建议全屏模式获得最佳体验