# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1090369 | andrei_iorgulescu | Genetics (BOI18_genetics) | C++14 | 2001 ms | 14624 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
mt19937 rng(8962);
int n, m, k;
char a[4105][4105];
bitset<8205> bs[4105];
bitset<4105> f0[4105], f1[4105], f2[4105], f3[4105];
bool inbuf[4105];
vector<int> cine[4105];
bool mna(int x, int y)
{
int xx = (bs[x] ^ bs[y]).count() - (f0[x] & f1[y]).count() - (f1[x] & f0[y]).count() - (f2[x] & f3[y]).count() - (f3[x] & f2[y]).count();
if (xx == k)
return true;
return false;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m >> k;
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
cin >> a[i][j];
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
{
if (a[i][j] == 'A')
bs[i][2 * j - 1] = bs[i][2 * j] = 0;
else if (a[i][j] == 'C')
bs[i][2 * j] = 1;
else if (a[i][j] == 'G')
bs[i][2 * j - 1] = 1;
else
bs[i][2 * j - 1] = bs[i][2 * j] = 1;
if (a[i][j] == 'A')
f0[i][j] = 1;
if (a[i][j] == 'T')
f1[i][j] = 1;
if (a[i][j] == 'C')
f2[i][j] = 1;
if (a[i][j] == 'G')
f3[i][j] = 1;
}
for (int i = 1; i <= n; i++)
cine[0].push_back(i);
for (int i = 1; i <= n; i++)
{
bool ok = true;
for (int j = i - 1; j >= 0; j--)
{
if (!ok)
break;
for (int q = 0; q < cine[j].size(); q++)
{
int it = cine[j][q];
if (it != i and !mna(i, it))
{
ok = false;
cine[j].erase(cine[j].begin() + q);
cine[j + 1].push_back(it);
break;
}
}
}
if (ok)
{
cout << i;
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... |