#ABC107D. Median of Medians

Median of Medians

题目描述

We will define the median of a sequence bb of length MM, as follows:

  • Let bb' be the sequence obtained by sorting bb in non-decreasing order. Then, the value of the (M/2+1)(M / 2 + 1)-th element of bb' is the median of bb. Here, // is integer division, rounding down.

For example, the median of (10,30,20)(10, 30, 20) is 2020; the median of (10,30,20,40)(10, 30, 20, 40) is 3030; the median of (10,10,10,20,30)(10, 10, 10, 20, 30) is 1010.

Snuke comes up with the following problem.

You are given a sequence aa of length NN. For each pair (l,r)(l, r) (1lrN1 \leq l \leq r \leq N), let ml,rm_{l, r} be the median of the contiguous subsequence (al,al+1,...,ar)(a_l, a_{l + 1}, ..., a_r) of aa. We will list ml,rm_{l, r} for all pairs (l,r)(l, r) to create a new sequence mm. Find the median of mm.

我们将对长度为 MM 的序列 bb中值定义如下:

  • bb' 是将 bb 按非递减顺序排序后得到的序列。那么, bb' 中第 (M/2+1)(M / 2 + 1) 个元素的值就是 bb 的中位数。这里, // 是整除,向下舍入。

例如, (10,30,20)(10, 30, 20) 的中位数是 2020(10,30,20,40)(10, 30, 20, 40) 的中位数是 3030(10,10,10,20,30)(10, 10, 10, 20, 30) 的中位数是 1010

Snuke 提出了以下问题。

给你一个长度为 NN 的序列 aa 。对于每一对 (l,r)(l, r) ( 1lrN1 \leq l \leq r \leq N ),让 ml,rm_{l, r} 成为 aa 的连续子序列 (al,al+1,...,ar)(a_l, a_{l + 1}, ..., a_r) 的中位数。我们将 ml,rm_{l, r} 列出所有成对的 (l,r)(l, r) ,从而建立一个新序列 mm 。求 mm 的中位数。

输入格式

输入内容按以下格式标准输入:

NN
a1a_1 a2a_2 ...... aNa_N

输出格式

打印 mm 的中位数。

样例 #1

样例输入 #1

3
10 30 20

样例输出 #1

30

样例 #2

样例输入 #2

1
10

样例输出 #2

10

样例 #3

样例输入 #3

10
5 9 5 9 8 9 3 5 4 3

样例输出 #3

8

说明

数据规模与约定

  • 1N1051 \leq N \leq 10^5
  • aia_i 是整数。
  • 1ai1091 \leq a_i \leq 10^9

样例 11 解释

aa 的每个连续子序列的中值如下:

  • (10)(10) 的中位数是 1010
  • (30)(30) 的中位数是 3030
  • (20)(20) 的中位数是 2020
  • (10,30)(10, 30) 的中位数是 3030
  • (30,20)(30, 20) 的中位数是 3030
  • (10,30,20)(10, 30, 20) 的中位数是 2020

因此, m=(10,30,20,30,30,20)m = (10, 30, 20, 30, 30, 20)mm 的中位数是 3030