zoukankan      html  css  js  c++  java
  • Three Swaps DFS

    E. Three Swaps
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Xenia the horse breeder has n (n > 1) horses that stand in a row. Each horse has its own unique number. Initially, the i-th left horse has number i. That is, the sequence of numbers of horses in a row looks as follows (from left to right): 1, 2, 3, ...n.

    Xenia trains horses before the performance. During the practice sessions, she consistently gives them commands. Each command is a pair of numbers l, r (1 ≤ l < rn). The command l, r means that the horses that are on the l-th, (l + 1)-th, (l + 2)-th, ...r-th places from the left must be rearranged. The horses that initially stand on the l-th and r-th places will swap. The horses on the (l + 1)-th and(r - 1)-th places will swap. The horses on the (l + 2)-th and (r - 2)-th places will swap and so on. In other words, the horses that were on the segment [l, r] change their order to the reverse one.

    For example, if Xenia commanded l = 2, r = 5, and the sequence of numbers of horses before the command looked as (2, 1, 3, 4, 5, 6), then after the command the sequence will be (2, 5, 4, 3, 1, 6).

    We know that during the practice Xenia gave at most three commands of the described form. You have got the final sequence of numbers of horses by the end of the practice. Find what commands Xenia gave during the practice. Note that you do not need to minimize the number of commands in the solution, find any valid sequence of at most three commands.

    Input

    The first line contains an integer n (2 ≤ n ≤ 1000) — the number of horses in the row. The second line contains n distinct integersa1, a2, ..., an (1 ≤ ain), where ai is the number of the i-th left horse in the row after the practice.

    Output

    The first line should contain integer k (0 ≤ k ≤ 3) — the number of commads Xenia gave during the practice. In each of the next k lines print two integers. In the i-th line print numbers li, ri (1 ≤ li < rin) — Xenia's i-th command during the practice.

    It is guaranteed that a solution exists. If there are several solutions, you are allowed to print any of them.

    Sample test(s)
    input
    5
    1 4 3 2 5
    
    output
    1
    2 4
    
    input
    6
    2 1 4 3 6 5
    
    output
    3
    1 2
    3 4
    5 6



    #include <iostream>
    #include <stdio.h>
    #include <stdlib.h>
    #include <vector>
    #include <queue>
    #include <algorithm>
    #include <limits.h>
    using namespace std;
    #define X first
    #define Y second
    #define PB(x) push_back(x)
    #define MP(x,y) make_pair(x,y)
    #define CLR(x) memset(x,0,sizeof(x));
    #define Rep(i,x,y) for(int i=x;i<y;i++)
    #define For(i,x,y) for(int i=x;i<=y;i++)
    #define DFor(i,x,y) for(int i=x;i>=y;i--)
    const int   oo=INT_MAX>>2;
    const int   sp[4][2]={{0,1},{1,0},{0,-1},{-1,0}};
    typedef pair<int, int> F;
    vector<F> ans;
    int n,v[2000];
    int getl(){
        For(i,1,n) if (v[i]!=i) return i; return 0;
    }
    int getr(){
        DFor(i,n,1)if (v[i]!=i) return i;
    }
    int getp(int x){
        For(i,1,n) if (v[i]==x) return i;
    }
    
    int dfs(int k)
    {
        int l=getl();
        if (!l) return 1;
        if (k==4) return 0;
        int r=getp(l);
        reverse(v+l, v+r+1);
        if (dfs(k+1)) return ans.PB(MP(l, r)),1;
        reverse(v+l, v+r+1);
        
        r=getr();
        l=getp(r);
        reverse(v+l, v+r+1);
        if (dfs(k+1)) return ans.PB(MP(l, r)),1;
        reverse(v+l, v+r+1);
        return 0;
    }
    int main()
    {
    //    freopen("/Users/MAC/Desktop/Error202/Error202/1.in","r",stdin);
    //    freopen("/Users/MAC/Desktop/Error202/Error202/1.out","w",stdout);
        cin>>n;
        For(i,1,n) cin>>v[i];
        dfs(1);
        if (ans.size()) {
            cout<<ans.size()<<endl;
            Rep(i,0,ans.size()) cout<<ans[i].X<<" "<<ans[i].Y<<endl;
        }
        else cout<<"2
    1 2
    1 2";
    }


  • 相关阅读:
    Aspnet_regiis加密web.config
    C#加密算法汇总
    ?? 运算符
    游戏外挂技术初探
    正则表达式语法
    C++Primer第四版13.5.1. 定义智能指针类的例子被new蒙蔽_BLOCK_TYPE_IS_VALID
    Adobe Flex 成为 Apache 基金会顶级开源项目
    程序员老黄历
    Flash多点触控体验和简介
    Flash开发人员必备:最新离线网页版ActionScript 3.0API文档、 flex 4.6 air 3.5 开发人员指南
  • 原文地址:https://www.cnblogs.com/keanuyaoo/p/3293921.html
Copyright © 2011-2022 走看看