CF1145A.Thanos Sort

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Thanos sort 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 nn ( 1n161 \le n \le 16 ) — the size of the array. nn is guaranteed to be a power of 2.

The second line of input contains nn space-separated integers aia_i ( 1ai1001 \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.

首页