当前位置:   article > 正文

D. Blue-Red Permutation(贪心排序_d - blue-red permutation

d - blue-red permutation

添加链接描述
贪心 考虑先颜色选B然后从小到大排序

#include<bits/stdc++.h>
using namespace std;
const int N=2e5+9;
char s[N];
int dp[N];
typedef long long ll;
struct node {
    int n;
    char ch;
}t[N];
bool cmp(node a,node b){
    if(a.ch==b.ch)return a.n<b.n;
    return a.ch<b.ch;
}
int solve(){
    int n;
    scanf("%d",&n);
    for(int i=1;i<=n;i++){
        scanf("%d",&t[i].n);
    }
    char s[N];
    scanf("%s",s);
    for(int i=1;i<=n;i++){
        t[i].ch=s[i-1];
    }
    sort(t+1,t+1+n,cmp);
    for(int i=1;i<=n;i++){
        //cout<<t[i].n<<" "<<t[i].ch<<endl;
        if(t[i].n>i&&t[i].ch=='R')return 0;
        if(t[i].n<i&&t[i].ch=='B')return 0;
    }
    return 1;
}
int main(){
    int T;
    scanf("%d",&T);
    while(T--){
        if(solve())puts("YES");
        else puts("NO");
    }
   
    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/395330
推荐阅读
相关标签
  

闽ICP备14008679号