이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
bitset<65> dna[4101];
int diff[4101][4101];
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n, m, k;
cin >> n >> m >> k;
for (int i = 0; i < n; i++) {
string ln; cin >> ln;
for (int j = 0; j < m; j++) {
if (ln[j] == 'A')
dna[i].set(j);
}
}
for (int a = 0; a < n; a++) {
for (int b = a + 1; b < n; b++) {
diff[a][b] = (dna[a] ^ dna[b]).count();
}
}
for (int a = 0; a < n; a++) {
bool allK = true;
for (int b = 0; b < n; b++) {
if (b != a && diff[min(a, b)][max(a, b)] != k) {
allK = false;
break;
}
}
if (allK) {
cout << (a + 1) << "\n";
return 0;
}
}
cout << "?\n";
return 1;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |