c_cpp CodeChef-TruthAndDare
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp CodeChef-TruthAndDare相关的知识,希望对你有一定的参考价值。
#include<bits/stdc++.h>
using namespace std;
int main(){
// freopen("ip.txt","r",stdin);
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin>>t;
while(t--){
int tr,dr,ts,ds,inp;
bool ans=true;
cin>>tr;
map<int,bool> tm;
for(int i=0;i<tr;i++){
cin>>inp;
tm[inp]=true;
}
cin>>dr;
map<int,bool> dm;
for(int i=0;i<dr;i++){
cin>>inp;
dm[inp]=true;
}
cin>>ts;
for(int i=0;i<ts;i++){
cin>>inp;
if(!tm[inp]){
ans=false;
}
}
cin>>ds;
for(int i=0;i<ds;i++){
cin>>inp;
if(!dm[inp]){
ans=false;
}
}
if(ans){
cout<<"yes"<<endl;
}else{
cout<<"no"<<endl;
}
}
return 0;
}
以上是关于c_cpp CodeChef-TruthAndDare的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp 127.单词阶梯
c_cpp MOFSET
c_cpp MOFSET
c_cpp 31.下一个排列
c_cpp string→char *
c_cpp 54.螺旋矩阵