# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
379997 | couplefire | Genetics (BOI18_genetics) | C++17 | 2090 ms | 41580 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#pragma GCC target ("avx2")
#pragma GCC optimization ("O3")
#pragma GCC optimization ("unroll-loops")
int n, m, k;
pair<array<bitset<4105>, 4>, int> arr[4105];
char bruh[4105][4105]; //A:0, G:1, C:2, T:3
int main(){
// freopen("a.in", "r", stdin);
scanf("%d %d %d", &n, &m, &k);
srand(time(NULL));
for(int i = 0; i<n; ++i){
scanf("%s", bruh[i]);
// printf("%s \n", bruh[i], bruh[i]+m);
for(int j = 0; j<4; ++j) arr[i].first[j].reset();
arr[i].second = i;
for(int j = 0; j<m; ++j){
if(bruh[i][j] == 'A') arr[i].first[0].set(j);
else if(bruh[i][j] == 'G') arr[i].first[1].set(j);
else if(bruh[i][j] == 'C') arr[i].first[2].set(j);
else arr[i].first[3].set(j);
}
}
random_shuffle(arr, arr+n);
for(int i = 0; i<n; ++i){
bool work = true;
for(int j = 0; j<n; ++j){
if(j == i) continue;
int cnt = 0;
for(int a = 0; a<4; ++a){
cnt += (arr[i].first[a]&arr[j].first[a]).count();
}
// printf("%d \n", cnt);
if(cnt != m-k){
work = false;
break;
}
}
if(work){
printf("%d \n", arr[i].second+1);
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... |