Ball
程序员文章站
2023-03-08 18:51:16
把b数组作为a数组排序后的数组。贪心的思想:a数组中的第一个颜色x,排序后会到b数组第一个颜色x(把0也当成一种颜色),因为如果a中的第一个颜色x能到b中的一个x后面的x则一定能到达第一个x。依次类推,把每一个颜色都编号对应到b数组中,记录排序后a数组每个颜色对应到b数组的位置。#include#include#include#include#include
把b数组作为a数组排序后的数组。贪心的思想:a数组中的第一个颜色x,排序后会到b数组第一个颜色x(把0也当成一种颜色),因为如果a中的第一个颜色x能到b中的一个x后面的x则一定能到达第一个x。依次类推,把每一个颜色都编号对应到b数组中,记录排序后a数组每个颜色对应到b数组的位置。
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<ctime>
#include<cmath>
#include<string>
#include<cstring>
#include<bitset>
#include<vector>
#include<queue>
#include<stack>
#include<set>
#include<unordered_set>
#include<map>
#include<unordered_map>
#include<iomanip>
#include<algorithm>
#define IOS ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define endl "\n"
#define int long long
using namespace std;
const int INF = 0x3f3f3f3f;
const int maxn = 1010;
int a[maxn],b[maxn],c[maxn],f[maxn];
int n,m,l,r;
void solve(){
cin >> n >> m;
for( int i = 1 ; i <= n ; ++i ) cin >> a[i];
for( int i = 1 ; i <= n ; ++i ) cin >> b[i];
memset(f,0,sizeof(f));
int flag = 0;
for( int i = 1 ; i <= n ; ++i ){
for(int j = 1 ; j <= n ; ++j ){
if(f[j] || b[i] != a[j]) continue;
flag++;
f[j] = 1;
c[j] = i;
break;
}
}
for( int i = 1 ; i <= m ; ++i ){
cin >> l >> r;
if(flag < n ) continue;
sort(c+l,c+r+1);
}
for( int i = 1 ; i <= n ; ++i ){
if(c[i] != i ){
flag = 0;
break;
}
}
if(flag < n) cout << "No" << endl;
else cout << "Yes" << endl;
}
main(){
IOS;
int tt;
cin >> tt;
while(tt--)
solve();
}
本文地址:https://blog.csdn.net/FriendA831143/article/details/107163296
上一篇: 《叶问》第14期
推荐阅读
-
Ball
-
HDU - 4811 - Ball (思维)
-
Codeforces Round #277.5 (Div. 2)B??BerSU Ball_html/css_WEB-ITnose
-
Codeforces Round #277.5 (Div. 2)B??BerSU Ball_html/css_WEB-ITnose
-
HDU-1199 && ZOJ-2301---Color the Ball 区间染色-离散化非线段树做法
-
Roll A Ball
-
Ball
-
Codeforces Round #277.5 (Div. 2)-B. BerSU Ball (贪心)_html/css_WEB-ITnose
-
Codeforces Round #277.5 (Div. 2)-B. BerSU Ball (贪心)_html/css_WEB-ITnose
-
HDU - 4811 - Ball (思维)