Codeforces 258B Sort the Array

Posted evenbao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 258B Sort the Array相关的知识,希望对你有一定的参考价值。

【题目链接】

           http://codeforces.com/contest/451/problem/B

【算法】

            模拟

            在序列中找到一段单调递增的子序列,将这段序列反转,然后判断序列是否变得单调递增,即可

【代码】

           

#include<bits/stdc++.h>
using namespace std;
const int MAXN = 1e5 + 10;

int i,n,l,r;
bool flag;
int a[MAXN];

int main() 
{
        
        scanf("%d",&n);
        for (i = 1; i <= n; i++) scanf("%d",&a[i]);
        l = r = 1;
        flag = false;
        for (i = 2; i <= n; i++)
        {
                if (a[i] < a[i-1]) 
                {
                        if (!flag) 
                        {
                                l = i - 1;
                                r = i;
                        }
                        else r++;    
                        flag = true;
                } else if (flag) break; 
        }
        reverse(a+l,a+r+1);
        for (i = 1; i <= n; i++)
        {
                if (a[i] < a[i-1])
                {
                        printf("no
");
                        return 0;
                } 
        }
        printf("yes
");
        printf("%d %d
",l,r);
         
        return 0;
    
}

 

以上是关于Codeforces 258B Sort the Array的主要内容,如果未能解决你的问题,请参考以下文章

Little Elephant and Elections CodeForces - 258B

B. Sort the Array1300 / 排序

Codeforces 1012A Photo of The Sky

CF258B

codeforces733D. Kostya the Sculptor 偏序cmp排序,数据结构hash,代码简化

CodeForces - 1525B Permutation Sort