# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1009505 | induwara16 | DNA 돌연변이 (IOI21_dna) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
int get_distance(int x, int y)
{
str a1 = a.substr(x, y);
str b1 = b.substr(x, y);
int n = a1.length(), c = 0;
int as = count(a1.begin(), a1.end(), 'A');
int cs = count(a1.begin(), a1.end(), 'C');
int ts = n - as - cs;
if ((as == n) || (cs == n) || (ts == n))
return 0;
if ((as == 0) || (cs == 0) || (ts == 0))
return 1;
bool same = false;
for (int i = 0; i < n; i++)
{
if (a1[i] == b1[i])
{
same = true;
break;
}
}
return same ? 1 : 2;
}