mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 14:38:47 +00:00
CF1598B Groups
R62650450
This commit is contained in:
parent
ea9b2ba878
commit
a4c6e79f99
38
Luogu/CF1598B/CF1598B.cpp
Normal file
38
Luogu/CF1598B/CF1598B.cpp
Normal file
@ -0,0 +1,38 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int t, n, cnt, l, r, a[1005][6];
|
||||
bool flag;
|
||||
|
||||
int main() {
|
||||
cin >> t;
|
||||
while (t--) {
|
||||
flag = false;
|
||||
cin >> n;
|
||||
for (int i = 1; i <= n; i++) {
|
||||
for (int j = 1; j <= 5; j++) {
|
||||
cin >> a[i][j];
|
||||
}
|
||||
}
|
||||
for (int i = 1; i <= 5; i++) {
|
||||
for (int j = i + 1; j <= 5; j++) {
|
||||
cnt = l = r = 0;
|
||||
for (int k = 1; k <= n; k++) {
|
||||
if (a[k][i] == 1 && a[k][j] == 1) {
|
||||
cnt++;
|
||||
} else {
|
||||
l += a[k][i];
|
||||
r += a[k][j];
|
||||
}
|
||||
}
|
||||
if (cnt + l + r == n && l <= n / 2 && r <= n / 2) {
|
||||
flag = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
cout << (flag ? "Yes" : "No") << endl;
|
||||
}
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user