0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 02:45:24 +00:00
OI-codes/Luogu/P7589/P7589.cpp

20 lines
328 B
C++

#include <bits/stdc++.h>
using namespace std;
int t, n, k, d, y, b, w, r;
int main() {
cin >> t;
while (t--) {
r = 0;
cin >> n >> k >> d;
while (n--) {
cin >> y >> b >> w;
r ^= abs(b - w) - 1;
}
cout << (r ? "Yes" : "No") << endl;
}
return 0;
}