测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A12533. Thanos Sort

编程题 普及/提高-
知识点

题目描述

[Thanos sort](https://codegolf.stackexchange.com/questions/182221/implement-the-thanos-sorting-algorithm) is a supervillain sorting algorithm, which works as follows: if the array is not sorted, snap your fingers\* to remove the first or the second half of the items, and repeat the process.

Given an input array, what is the size of the longest sorted array you can obtain from it using Thanos sort?

\*Infinity Gauntlet required.

输入格式

The first line of input contains a single number $n$ ( $1 \le n \le 16$ ) — the size of the array. $n$ is guaranteed to be a power of 2.

The second line of input contains $n$ space-separated integers $a_i$ ( $1 \le a_i \le 100$ ) — the elements of the array.

输出格式

Return the maximal length of a sorted array you can obtain using Thanos sort. The elements of the array have to be sorted in non-decreasing order.

输入输出样例

输入 #1
4
1 2 2 4
输出 #1
4
输入 #2
8
11 12 1 2 13 14 3 4
输出 #2
2
输入 #3
4
7 6 5 4
输出 #3
1

说明/提示

In the first example the array is already sorted, so no finger snaps are required.

In the second example the array actually has a subarray of 4 sorted elements, but you can not remove elements from different sides of the array in one finger snap. Each time you have to remove either the whole first half or the whole second half, so you'll have to snap your fingers twice to get to a 2-element sorted array.

In the third example the array is sorted in decreasing order, so you can only save one element from the ultimate destruction.
上一题 去做题 下一题