# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
437075 | T0p_ | DNA 돌연변이 (IOI21_dna) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dna.h"
#include <bits/stdc++.h>
using namespace std;
void init(string a, string b)
{
n = a.length();
mp['A'] = 0;
mp['C'] = 1;
mp['T'] = 2;
cnt[0][mp[a[0]]][1]++;
cnt[1][mp[b[0]]][1]++;
ans[1] = (a[0] == b[0]) ? 0 : 1;
for(int i=2 ; i<=n ; i++)
{
cnt[0][mp[a[i-1]]][i]++;
cnt[1][mp[b[i-1]]][i]++;
for(int j=0 ; j<3 ; j++)
{
cnt[0][j][i] += cnt[0][j][i-1];
cnt[1][j][i] += cnt[1][j][i-1];
}
ans[i] = ans[i-1] + ((a[i-1] == b[i-1]) ? 0 : 1);
}
}
int get_distance(int x, int y)
{
x++, y++;
for(int j=0 ; j<3 ; j++) if(cnt[0][j][y]-cnt[0][j][x-1] != cnt[1][j][y]-cnt[1][j][x-1]) return -1;
int ret = 0;
int dif = ans[y] - ans[x-1];
if(dif%2)
{
ret += 2;
dif -= 3;
}
ret += dif/2;
return ret;
}