Codeforces 451 B Sort the Array(水題)

4269 ワード

タイトル接続:Codeforces 451 B Sort the Array
長さnのシーケンスを与え、a[l]からa[r]の間の数を回転させる機会があり、インクリメンタルシーケンスを形成できるかどうかを尋ねる.
解題の構想:配列を順番に並べて、それから前から後ろに、後ろから前へ異なる位置を探して、このl~rは必ず回転して、それから回転した後の符が増加に合わないと判断します.注意l>rの場合.
#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;
const int maxn = 1e5+5;

int n, arr[maxn], pos[maxn];

bool judge (int l, int r) {
    for (int i = 0; i + l <= r; i++) {
        if (arr[l+i] != pos[r-i])
            return false;
    }
    return true;
}

int main () {
    scanf("%d", &n);
    for (int i = 0; i < n; i++) {
        scanf("%d", &arr[i]);
        pos[i] = arr[i];
    }

    sort(pos, pos + n);
    int l = 0, r = n-1;
    while (l < n && pos[l] == arr[l]) l++;
    while (r >= 0 && pos[r] == arr[r]) r--;

    if (judge(l, r)) {
        if (r < l)
            l = r = 0;
        printf("yes
%d %d
"
, l+1, r+1); } else printf("no
"
); return 0; }