# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
777812 | TheSahib | Genetics (BOI18_genetics) | C++14 | 765 ms | 17100 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#pragma GCC target("popcnt")
#define ll long long
#define oo 1e9
#define pii pair<int, int>
using namespace std;
const int MAX = 1 << 12;
int n, m, k;
bitset<MAX> st[MAX][4];
int comp(int a, int b){
int cnt = 0;
for (int i = 0; i < 4; i++)
{
cnt += (st[a][i] & st[b][i]).count();
}
return m - cnt;
}
void solve(){
scanf("%d%d%d", &n, &m, &k);
for (int i = 0; i < n; i++)
{
getchar();
for (int j = 0; j < m; j++)
{
char c = getchar();
if(c == 'G') c = 'B';
if(c == 'T') c = 'D';
st[i][c - 'A'][j] = 1;
}
}
vector<int> v;
v.resize(n);
iota(v.begin(), v.end(), 0);
srand(time(0));
random_shuffle(v.begin(), v.end());
vector<int> p;
for(int i:v){
if(i == v[0]) continue;
if(comp(i, v[0]) == k){
p.push_back(i);
}
}
if(p.size() == n - 1){
cout << v[0] + 1 << '\n';
return;
}
for(int i:p){
bool pos = true;
for(int j:v){
if(i == j) continue;
if(comp(i, j) != k){
pos = false;
break;
}
}
if(pos){
cout << i + 1 << '\n';
return;
}
}
}
int main()
{
solve();
}
Compilation message (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... |