# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
66598 | Bruteforceman | Genetics (BOI18_genetics) | C++11 | 1621 ms | 9976 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
bitset <4105> P[4][4105];
char s[4105];
int cnt[4][4105];
int main(int argc, char const *argv[])
{
int n, m, k;
scanf("%d %d %d", &n, &m, &k);
for(int i = 0; i < n; i++) {
scanf("%s", s);
for(int j = 0; j < m; j++) {
if(s[j] == 'A') {
P[0][i][j] = 1;
++cnt[0][j];
}
else if (s[j] == 'C') {
P[1][i][j] = 1;
++cnt[1][j];
} else if (s[j] == 'T') {
P[2][i][j] = 1;
++cnt[2][j];
} else {
P[3][i][j] = 1;
++cnt[3][j];
}
}
}
vector <int> v;
for(int i = 0; i < n; i++) {
v.push_back(i);
}
random_shuffle(v.begin(), v.end());
for(int x = 0; x < n; x++) {
bool bad = false;
int i = v[x];
int sum = 0;
for(int y = 0; y < m; y++) {
if(P[0][i][y] == 1) {
sum += n - cnt[0][y];
} else if (P[1][i][y] == 1) {
sum += n - cnt[1][y];
} else if (P[2][i][y] == 1) {
sum += n - cnt[2][y];
} else {
sum += n - cnt[3][y];
}
}
if(sum != (n - 1) * k) continue;
for(int y = 0; y < n; y++) {
int j = v[y];
if(i == j) continue;
int X = (P[0][i] & P[0][j]).count() + (P[1][i] & P[1][j]).count() + (P[2][i] & P[2][j]).count() + (P[3][i] & P[3][j]).count();
if((m - X) != k) {
bad = true;
break;
}
}
if(!bad) {
printf("%d\n", i+1);
exit(0);
}
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |