# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
790629 | AngusRitossa | Genetics (BOI18_genetics) | C++14 | 2065 ms | 44972 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int n, k, m;
char dna[4110][4110];
ll thing[4110][70];
bool isbad[4110];
bool isgood[4110][4110];
int pop_count(ll x)
{
int ans = 0;
while (x & -x)
{
ans++;
x -= (x & -x);
}
return ans;
}
int main()
{
scanf("%d%d%d", &n, &m, &k);
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
scanf(" %c", &dna[i][j]);
if (dna[i][j] == 'A')
{
ll mod = j%60;
ll div = j/60;
thing[i][div] |= (1ll << mod);
}
}
}
int div = m/60;
div++;
if (n+m > 200)
{
for (int i = 0; i < n; i++)
{
if (isbad[i]) continue;
bool works = 1;
for (int j = 0; j < n; j++)
{
if (i == j || isgood[i][j]) continue;
ll diff = 0;
for (int l = 0; l <= div; l++)
{
diff += pop_count(thing[i][l] ^ thing[j][l]);
}
if (diff != k)
{
isbad[j] = 1;
works = 0;
break;
}
isgood[j][i] = 1;
}
if (works)
{
printf("%d\n", i+1);
return 0;
}
}
}
else
{
for (int i = 0; i < n; i++)
{
bool works = 1;
for (int j = 0; j < n; j++)
{
if (i == j) continue;
int diff = 0;
for (int l = 0; l < m; l++)
{
if (dna[i][l] != dna[j][l]) diff++;
}
if (diff != k)
{
works = 0;
break;
}
}
if (works)
{
printf("%d\n", i+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... |