307536: CF1370D. Odd-Even Subsequence
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Odd-Even Subsequence
题意翻译
给定长为 $n$ 的数组 $a$。定义 $a$ 的子序列 $s$ 的代价为 $\min\{\max\{s_1,s_3,s_5,\cdots\},\max\{s_2,s_4,s_6,...\}\}$。换句话说,$s$ 的代价是下面两个数的最小值: - $s$ 中所有奇数下标处元素的最大值 - $s$ 中所有偶数下标处元素的最大值 你需要求出,长为 $k$ 的子序列中最小的代价是多少。 $2 \leq k \leq n \leq 2\cdot 10^5,1 \leq a_i \leq 10^9$ 翻译 by Meatherm题目描述
Ashish has an array $ a $ of size $ n $ . A subsequence of $ a $ is defined as a sequence that can be obtained from $ a $ by deleting some elements (possibly none), without changing the order of the remaining elements. Consider a subsequence $ s $ of $ a $ . He defines the cost of $ s $ as the minimum between: - The maximum among all elements at odd indices of $ s $ . - The maximum among all elements at even indices of $ s $ . Note that the index of an element is its index in $ s $ , rather than its index in $ a $ . The positions are numbered from $ 1 $ . So, the cost of $ s $ is equal to $ min(max(s_1, s_3, s_5, \ldots), max(s_2, s_4, s_6, \ldots)) $ . For example, the cost of $ \{7, 5, 6\} $ is $ min( max(7, 6), max(5) ) = min(7, 5) = 5 $ . Help him find the minimum cost of a subsequence of size $ k $ .输入输出格式
输入格式
The first line contains two integers $ n $ and $ k $ ( $ 2 \leq k \leq n \leq 2 \cdot 10^5 $ ) — the size of the array $ a $ and the size of the subsequence. The next line contains $ n $ integers $ a_1, a_2, \ldots, a_n $ ( $ 1 \leq a_i \leq 10^9 $ ) — the elements of the array $ a $ .
输出格式
Output a single integer — the minimum cost of a subsequence of size $ k $ .
输入输出样例
输入样例 #1
4 2
1 2 3 4
输出样例 #1
1
输入样例 #2
4 3
1 2 3 4
输出样例 #2
2
输入样例 #3
5 3
5 3 4 2 6
输出样例 #3
2
输入样例 #4
6 4
5 3 50 2 4 5
输出样例 #4
3