#ABC107D. Median of Medians
Median of Medians
题目描述
We will define the median of a sequence of length , as follows:
- Let be the sequence obtained by sorting in non-decreasing order. Then, the value of the -th element of is the median of . Here, is integer division, rounding down.
For example, the median of is ; the median of is ; the median of is .
Snuke comes up with the following problem.
You are given a sequence of length . For each pair (), let be the median of the contiguous subsequence of . We will list for all pairs to create a new sequence . Find the median of .
我们将对长度为 的序列 的中值定义如下:
- 设 是将 按非递减顺序排序后得到的序列。那么, 中第 个元素的值就是 的中位数。这里, 是整除,向下舍入。
例如, 的中位数是 ; 的中位数是 ; 的中位数是 。
Snuke 提出了以下问题。
给你一个长度为 的序列 。对于每一对 ( ),让 成为 的连续子序列 的中位数。我们将 列出所有成对的 ,从而建立一个新序列 。求 的中位数。
输入格式
输入内容按以下格式标准输入:
输出格式
打印 的中位数。
样例 #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
说明
数据规模与约定
- 是整数。
样例 解释
的每个连续子序列的中值如下:
- 的中位数是 。
- 的中位数是 。
- 的中位数是 。
- 的中位数是 。
- 的中位数是 。
- 的中位数是 。
因此, 和 的中位数是 。