zoukankan      html  css  js  c++  java
  • Codeforces Round #359 (Div. 2) B. Little Robber Girl's Zoo 水题

    B. Little Robber Girl's Zoo

    题目连接:

    http://www.codeforces.com/contest/686/problem/B

    Description

    Little Robber Girl likes to scare animals in her zoo for fun. She decided to arrange the animals in a row in the order of non-decreasing height. However, the animals were so scared that they couldn't stay in the right places.

    The robber girl was angry at first, but then she decided to arrange the animals herself. She repeatedly names numbers l and r such that r - l + 1 is even. After that animals that occupy positions between l and r inclusively are rearranged as follows: the animal at position l swaps places with the animal at position l + 1, the animal l + 2 swaps with the animal l + 3, ..., finally, the animal at position r - 1 swaps with the animal r.

    Help the robber girl to arrange the animals in the order of non-decreasing height. You should name at most 20 000 segments, since otherwise the robber girl will become bored and will start scaring the animals again.

    Input

    The first line contains a single integer n (1 ≤ n ≤ 100) — number of animals in the robber girl's zoo.

    The second line contains n space-separated integers a1, a2, ..., an (1 ≤ ai ≤ 109), where ai is the height of the animal occupying the i-th place.

    Output

    Print the sequence of operations that will rearrange the animals by non-decreasing height.

    The output should contain several lines, i-th of the lines should contain two space-separated integers li and ri (1 ≤ li < ri ≤ n) — descriptions of segments the robber girl should name. The segments should be described in the order the operations are performed.

    The number of operations should not exceed 20 000.

    If the animals are arranged correctly from the start, you are allowed to output nothing.

    Sample Input

    4
    2 1 4 3

    Sample Output

    1 4

    Hint

    题意

    给你n个数,你需要把它变成非递减的序列

    你每次操作可以给定一个[L,R]区间,使得这个区间的数l和l+1交换,l+2和l+3交换。。。R和R-1交换

    然后最多输出20000次,使得有序。

    题解:

    为什么这么麻烦呢?操作

    我每次只操作两个数不就好了,然后就像冒泡排序那样去写就好了。。。

    代码

    #include<bits/stdc++.h>
    using namespace std;
    const int maxn = 105;
    int a[maxn],n;
    int main()
    {
        scanf("%d",&n);
        for(int i=1;i<=n;i++)
            scanf("%d",&a[i]);
        for(int i=n;i>=1;i--){
            for(int j=1;j<i;j++){
                if(a[j]>a[j+1]){
                    swap(a[j],a[j+1]);
                    cout<<j<<" "<<j+1<<endl;
                }
            }
        }
    }
  • 相关阅读:
    java jdk1.8 32/64位 官方绿色版下载附安装教程
    坡度常用的表示方法
    就此道别
    阿里巴巴矢量图标库(iconfont)批量全选的方法
    thinkphp6.0 集成Alipay 手机和电脑端支付的方法
    法定的属于我的第23个年头已经结束,在今天迎来第24年的第一天。
    世界地图展开图,来自 Simon's World Map
    thinkphp6.0 composer 安装 web-token/jwt-framework 常见出错原因分析及解决方法
    thinkphp6 常用方法文档
    Python获取列表中的最后一个或者倒数第几个的方案
  • 原文地址:https://www.cnblogs.com/qscqesze/p/5615867.html
Copyright © 2011-2022 走看看