B. Trouble Sort1300 / 思维
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B. Trouble Sort1300 / 思维相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/1365/B
分为两种情况:
- 本身就有序
- 或者b数组有0有1
#include<bits/stdc++.h>
using namespace std;
int main(void)
{
int t; cin>>t;
while(t--)
{
int n,x,flag=0;
int flag1=0,flag2=0;
cin>>n;
vector<int>a,b;
for(int i=0;i<n;i++) cin>>x,a.push_back(x);
for(int i=0;i<n;i++)
{
cin>>x;
if(x) flag1++;
else flag2++;
}
if(flag1&&flag2) flag=1;//b数组有0有1
b=a;
sort(b.begin(),b.end());
if(a==b) flag=1;//本身有序
if(flag) puts("Yes");
else puts("No");
}
return 0;
}
以上是关于B. Trouble Sort1300 / 思维的主要内容,如果未能解决你的问题,请参考以下文章
B. Jzzhu and Sequences1300 / 思维 规律
B. Pashmak and Flowers1300 / 思维