Codeforces 873 D Merge Sort 【分治】

题目:
http://codeforces.com/contest/873/problem/D

题意:
子序列长度为n,归并排序,如果子序列不是有序的,那么就折半,再递归,直到子序列有序,总共递归k次。
给出n和k,求原来的子序列。

分析:
归并排序的变形,每次折半直到k为0。

代码:

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;
const int N=2e5+9;
typedef long long LL;
typedef pair<int,int> pii;

int n,k,a[N+5];

void Solve(int l,int r)
{
    if(!k||l==r-1) return;
    k-=2;
    int mid=(l+r)>>1;
    swap(a[mid-1],a[mid]);
    Solve(l,mid);
    Solve(mid,r);
}

int main()
{
    scanf("%d%d",&n,&k);
    k--;
    if(k&1) return 0*puts("-1");
    for(int i=0;i1;
    Solve(0,n);
    if(k) return 0*puts("-1");
    for(int i=0;iprintf("%d ",a[i]);
    return 0;
}

你可能感兴趣的:(Codeforces,搜索)