Educational Codeforces Round 37 C Swap Adjacent Elements

Posted Visitor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Educational Codeforces Round 37 C Swap Adjacent Elements相关的知识,希望对你有一定的参考价值。

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


显然l..r这一段连续的1可以把l..r+1变成有序的。
那么就把所有的连续1段变成有序的就好。
看看最后是不是升序即可。

【代码】

#include <bits/stdc++.h>
using namespace std;

const int N = 2e5;

int n,a[N+10],b[N+10];
char s[N+10];

int main(){
    #ifdef LOCAL_DEFINE
        freopen("rush_in.txt", "r", stdin);
    #endif
    ios::sync_with_stdio(0),cin.tie(0);
    cin >> n;
    for (int i = 1;i <= n;i++) cin >> a[i];
    cin >>(s+1);
    for (int i = 1;i <= n-1;i++)
        if (s[i]=='1'){
            int j = i;
            while (j+1<=n-1 && s[j+1]==s[i]) j++;
            sort(a+i,a+1+j+1);
            i = j;
        }
    for (int i = 1;i <= n;i++)
        if (a[i]!=i)
            return cout<<"NO"<<endl,0;
    cout<<"YES"<<endl;
    return 0;
}

以上是关于Educational Codeforces Round 37 C Swap Adjacent Elements的主要内容,如果未能解决你的问题,请参考以下文章

Educational Codeforces Round 7 A

Educational Codeforces Round 7

Educational Codeforces Round 90

Educational Codeforces Round 33

Codeforces Educational Codeforces Round 54 题解

Educational Codeforces Round 27