Codeforces-SolutionsA/Codes/1848 A - Vika and Her Friends/1848A.cpp
2023-12-31 14:54:40 +06:00

37 lines
589 B
C++

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
void solve()
{
int n,m,k;
cin>>n>>m>>k;
int x,y;
cin>>x>>y;
int vika_color=(x+y)%2;
bool caught=false;
while(k--)
{
int p,q;
cin>>p>>q;
int friend_color=(p+q)%2;
if(vika_color==friend_color)
{
caught=true;
}
}
if(caught) cout<<"NO"<<endl;
else cout<<"YES"<<endl;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int TC = 1;
cin >> TC;
cin.ignore();
while (TC--) solve();
}