Advertisement
sherry_ahmos

Untitled

Dec 20th, 2021
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.89 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.      int couter;
  8.     cin>>couter;
  9.     while(couter--){
  10.        int n,flag1=0,flag2=0;
  11.        cin>>n;
  12.        long long arr[2*n];
  13.        for(int i=0;i<2*n;i++){
  14.         cin>>arr[i];
  15.        }
  16.        if(n==1){
  17.         if(arr[0]%2==0 && arr[1]%2==0){
  18.                 flag1=1;
  19.                 flag2=1;
  20.         }
  21.        }
  22.        for(int i=0;i<n;i++){
  23.         for(int j=i+1;j<n;j++){
  24.             if((arr[i] + arr[j])%2==0){
  25.                     flag1=1;
  26.                     break;
  27.             }
  28.         }
  29.        }
  30.     for(int i=n;i<2*n;i++){
  31.         for(int j=i+1;j<2*n;j++){
  32.             if((arr[i]+arr[j])%2==0){
  33.                     flag2=1;
  34.                     break;
  35.             }
  36.         }
  37.     }
  38.     if(flag1==0 &&flag2==0){
  39.         cout<<"Yes"<<endl;
  40.     }else{
  41.     cout<<"No"<<endl;
  42.     }
  43.     }
  44.     return 0;
  45. }
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement