# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
878323 | ArashJafariyan | Genetics (BOI18_genetics) | C++17 | 1985 ms | 41828 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
mt19937 ran(17);
#pragma GCC optimize("Ofast,unroll-loops")
#pragma GCC target("avx2")
const int N = 4100;
int n, m, k, idx[N], cnt[N][4];
char s[N][N];
bitset<N * 4> have[N];
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n >> m >> k;
for (int i = 0; i < n; ++i) {
idx[i] = i;
cin >> s[i];
for (int j = 0; j < m; ++j) {
char c = s[i][j];
if (c == 'A') {
have[i][j] = true;
++cnt[i][0];
}
else if (c == 'G') {
have[i][j + m] = true;
++cnt[i][1];
}
else if (c == 'C') {
have[i][j + 2 * m] = true;
++cnt[i][2];
}
else if (c == 'T') {
have[i][j + 3 * m] = true;
++cnt[i][3];
}
}
}
vector<int> check;
for (int i = 0; i < n; ++i) {
bool ok = true;
for (int j = 0; j < n; ++j) {
int sum = 0;
for (int l = 0; l < 4; ++l) {
sum += min(cnt[i][l], cnt[i][l]);
}
if (sum < m - k) {
ok = false;
}
}
check.pb(i);
}
k <<= 1;
shuffle(idx, idx + n, ran);
for (int _ : check) {
int i = idx[_];
bool isAns = true;
for (int j = 0; j < n; ++j) {
if (i == j) {
continue;
}
if ((have[i] ^ have[j]).count() != k) {
isAns = false;
break;
}
}
if (isAns == true) {
cout << i + 1;
return 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... |