hilp

法老王  •  1年前


include<bits/stdc++.h>

using namespace std; int a[10001],b[10001],c=2; int get(int n,int m,int a[10001],int b[100001]){

 for(int t=0;t<m;t++){
    for(int i=0;i<n;i++){
        if(a[i]==b[t])
            return c=1;
        else
           return c=0;
    }
 }

} int main(){

int n,m;
cin>>n;
for(int t=0;t<n;t++){
    cin>>a[t];
}
cin>>m;
 for(int t=0;t<m;t++){
    cin>>b[t];
}
get(n,m,a,b);
for(int t=0;t<m;t++)
	{
		if(c==1){
			cout<<"YES"<<endl;
		}
			else
				cout<<"NO";

	}
return 0;

}

//怎么行不通

评论: